-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 923 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
{
"name": "jellyfish/application",
"description": "Jellyfish application bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Rose",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"jellyfish/console": "^1.0.0",
"jellyfish/http": "^1.0.0",
"jellyfish/kernel": "^1.0.0",
"jellyfish/pimple": "^1.0.0",
"jellyfish/road-runner": "^1.0.0"
},
"require-dev": {
"codeception/codeception": "^4.0",
"mikey179/vfsstream": "^v1.6",
"phpstan/phpstan": "^0.12",
"roave/security-advisories": "dev-master as 1.0.0",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Jellyfish\\Application\\": "src/Jellyfish/Application"
}
},
"autoload-dev": {
"psr-4": {
"Jellyfish\\Application\\": "tests/Jellyfish/Application"
}
},
"bin": [
"bin/console"
]
}