-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pretty much done. All the tests run.
- Loading branch information
Cully Larson
committed
Sep 3, 2015
0 parents
commit cef5b08
Showing
7 changed files
with
1,341 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.DS_Store | ||
.idea | ||
.ant_targets | ||
|
||
vendor | ||
composer.phar | ||
phpunit.xml | ||
|
||
# this is the code coverage generated when running phpunit. | ||
tests/log |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "cullylarson/local-commands", | ||
"type": "library", | ||
"description": "A library for executing local shell commands, with support for exit status, standard output, and error output.", | ||
"keywords": ["command-line", "shell"], | ||
"homepage": "https://github.com/cullylarson/local-command", | ||
"license": "MIT", | ||
"authors": [{ | ||
"name": "Cully Larson", | ||
"email": "[email protected]" | ||
}], | ||
"require": { | ||
"php": ">=5.3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~4.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Cully\\": "src/Cully" | ||
} | ||
} | ||
} |
Oops, something went wrong.