-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
{
"name": "chimera/routing",
"description": "A collection of reusable PSR-15 components that connects Chimera to any framework",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"chimera/foundation": "^1.0.x-dev",
"fig/http-message-util": "^1.1.5",
"lcobucci/content-negotiation-middleware": "^3.1",
"middlewares/negotiation": "^2.1",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1",
"psr/http-server-handler": "^1.0.1",
"psr/http-server-middleware": "^1.0.1"
},
"require-dev": {
"infection/infection": "^0.26.19",
"laminas/laminas-diactoros": "^2.24.2",
"lcobucci/coding-standard": "^9.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10.7",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.10",
"phpstan/phpstan-strict-rules": "^1.5.0",
"phpunit/phpunit": "^10.0.16"
},
"autoload": {
"psr-4": {
"Chimera\\Routing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Chimera\\Routing\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}