-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.38 KB
/
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
{
"name": "chimera/sample",
"description": "A very simple test project using chimera",
"type": "project",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true
},
"prefer-stable": true,
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-json": "*",
"chimera/bus-tactician": "^1.0.x-dev",
"chimera/di-symfony": "^1.0.x-dev",
"chimera/foundation": "^1.0.x-dev",
"chimera/mapping": "^0.5.x-dev",
"chimera/routing": "^1.0.x-dev",
"chimera/routing-mezzio": "^1.0.x-dev",
"lcobucci/di-builder": "^7.3.1",
"lcobucci/error-handling-middleware": "^1.4.0",
"middlewares/response-time": "^2.0.1",
"monolog/monolog": "^3.4.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Lcobucci\\MyApi\\": ["config", "public", "src"]
}
},
"scripts": {
"cleanup": [
"rm -rf var",
"@composer install --no-dev -a",
"mkdir -p var/cache var/tmp"
],
"serve": [
"@cleanup",
"@php -d opcache.enable_cli=1 -d opcache.fast_shutdown=1 -d opcache.max_wasted_percentage=10 -d opcache.validate_timestamps=0 -d opcache.enable_file_override=1 -d expose_php=off -d zend.assertions=-1 -S 0.0.0.0:8080 -t public/"
]
}
}