-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update code documentation and docblocks
- Loading branch information
Showing
10 changed files
with
75 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,57 @@ | ||
{ | ||
"name": "rougin/spark-plug", | ||
"description": "Returns Codeigniter applications as single variables.", | ||
"description": "Codeigniter applications as single variables.", | ||
"keywords": ["codeigniter", "instance", "php", "spark-plug"], | ||
"homepage": "https://github.com/rougin/spark-plug", | ||
"homepage": "https://rougin.github.io/spark-plug/", | ||
"license": "MIT", | ||
"authors": [ | ||
"authors": | ||
[ | ||
{ | ||
"name": "Rougin Royce Gutib", | ||
"name": "Rougin Gutib", | ||
"email": "rougingutib@gmail.com", | ||
"homepage": "https://rougin.github.io", | ||
"homepage": "https://rougin.github.io/", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php" : ">=5.4.0" | ||
"require": | ||
{ | ||
"php": ">=5.4.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit" : "4.*", | ||
"scrutinizer/ocular": "~1.1", | ||
"rougin/codeigniter": "~3.0" | ||
"require-dev": | ||
{ | ||
"phpunit/phpunit": "~4.2|~5.7", | ||
"rougin/codeigniter": "~3.0", | ||
"scrutinizer/ocular": "~1.1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"autoload": | ||
{ | ||
"psr-4": | ||
{ | ||
"Rougin\\SparkPlug\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"autoload-dev": | ||
{ | ||
"psr-4": | ||
{ | ||
"Rougin\\SparkPlug\\": "tests" | ||
} | ||
}, | ||
"scripts": { | ||
"scripts": | ||
{ | ||
"test": "phpunit" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"extra": | ||
{ | ||
"branch-alias": | ||
{ | ||
"dev-master": "1.0-dev" | ||
} | ||
}, | ||
"suggest": { | ||
"suggest": | ||
{ | ||
"rougin/codeigniter": "A package that installs Codeigniter's core via Composer.", | ||
"rougin/combustor": "Generates MVC code for Codeigniter using database tables.", | ||
"rougin/refinery": "\"Ready-to-eat\" migrations for the Codeigniter framework." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="vendor/autoload.php" colors="true" verbose="true"> | ||
<testsuites> | ||
<testsuite name="Sparkplug Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">src/</directory> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<log type="tap" target="build/report.tap"/> | ||
<log type="junit" target="build/report.junit.xml"/> | ||
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/> | ||
<log type="coverage-text" target="build/coverage.txt"/> | ||
<log type="coverage-clover" target="build/logs/clover.xml"/> | ||
</logging> | ||
<phpunit bootstrap="vendor/autoload.php" colors="true" stderr="true"> | ||
<testsuites> | ||
<testsuite name="Spark Plug Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">src/</directory> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<log type="tap" target="build/report.tap"/> | ||
<log type="junit" target="build/report.junit.xml"/> | ||
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/> | ||
<log type="coverage-text" target="build/coverage.txt"/> | ||
<log type="coverage-clover" target="build/logs/clover.xml"/> | ||
</logging> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters