-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 933 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "amyb9/cat-service",
"description": "A service to serve information about cats.",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Amy Basque",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"ext-pcntl": "*",
"ext-json": "*",
"ext-pdo": "*",
"neighborhoods/buphalo": "^1.1",
"neighborhoods/prefab": "dev-feature/container_only",
"neighborhoods/exception-component": "^1",
"neighborhoods/kojo": "5.2.*",
"fzaninotto/faker": "^1.9",
"aws/aws-sdk-php": "^3.147",
"robmorgan/phinx": "^0.12.3"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Amyb9\\CatService\\": [
"src",
"fab"
]
}
},
"autoload-dev": {
"psr-4": {
"Amyb9\\CatService\\": [
"test",
"test-fab"
]
}
}
}