summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..b94aa87
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,24 @@
+{
+ "name": "Phil Burton's CityPantry test",
+ "description": "",
+ "minimum-stability": "stable",
+ "license": "proprietary",
+ "authors": [
+ {
+ "name": "Phil Burton",
+ "email": "phil@pgburton.com"
+ }
+ ],
+ "require": {
+ "php": "^7.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "App\\Tests\\Unit\\": "./tests/unit",
+ "App\\": "src/"
+ }
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.5"
+ }
+}