summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..ef01de5
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "consolidation/config",
+ "description": "Provide configuration services for a commandline tool.",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Greg Anderson",
+ "email": "greg.1.anderson@greenknowe.org"
+ }
+ ],
+ "autoload":{
+ "psr-4":{
+ "Consolidation\\Config\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Consolidation\\TestUtils\\": "tests/src"
+ }
+ },
+ "require": {
+ "php": ">=5.4.0",
+ "dflydev/dot-access-data": "^1.1.0",
+ "grasmash/yaml-expander": "^1.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4",
+ "symfony/console": "^2.5|^3",
+ "satooshi/php-coveralls": "^1.0",
+ "squizlabs/php_codesniffer": "2.*"
+ },
+ "scripts": {
+ "cs": "phpcs --standard=PSR2 -n src",
+ "cbf": "phpcbf --standard=PSR2 -n src",
+ "test": "SHELL_INTERACTIVE=true phpunit --colors=always"
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ }
+}