summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..2d6140d
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,39 @@
+{
+ "name": "consolidation/annotated-command",
+ "description": "Initialize Symfony Console commands from annotated command class methods.",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Greg Anderson",
+ "email": "greg.1.anderson@greenknowe.org"
+ }
+ ],
+ "autoload":{
+ "psr-4":{
+ "Consolidation\\AnnotatedCommand\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Consolidation\\TestUtils\\": "tests/src"
+ }
+ },
+ "require": {
+ "php": ">=5.4.0",
+ "psr/log": "~1.0",
+ "symfony/console": "~2.5|~3.0",
+ "symfony/finder": "~2.5|~3.0",
+ "phpdocumentor/reflection-docblock": "~2"
+ },
+ "require-dev": {
+ "consolidation/output-formatters": "~1",
+ "phpunit/phpunit": "4.*",
+ "satooshi/php-coveralls": "^1.0",
+ "squizlabs/php_codesniffer": "2.*"
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ }
+}