Skip to content

Commit

Permalink
Pretty much done. All the tests run.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cully Larson committed Sep 3, 2015
0 parents commit cef5b08
Show file tree
Hide file tree
Showing 7 changed files with 1,341 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
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
23 changes: 23 additions & 0 deletions composer.json
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"
}
}
}
Loading

0 comments on commit cef5b08

Please sign in to comment.