diff --git a/.gitignore b/.gitignore index ba38c4f..68f3bfe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,3 @@ -*.exe -*.exe~ -*.orig -*.test .*.swp .DS_Store +web/app/composer.json \ No newline at end of file diff --git a/web/app/composer.json.dist b/web/app/composer.json.dist new file mode 100644 index 0000000..91b66fd --- /dev/null +++ b/web/app/composer.json.dist @@ -0,0 +1,22 @@ +{ + "require": { + + }, + "require-dev": { + "squizlabs/php_codesniffer": "2.*", + "phpunit/phpunit": "5.7.*", + "apigen/apigen": "^4.1.2" + }, + "autoload": { + "psr-4": { + "App\\Acme\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "AppTest\\Acme\\": "test/" + } + }, + "minimum-stability": "dev", + "prefer-stable": true +}