This repository has been archived by the owner on Feb 25, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.49 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
{
"name": "chimera/routing-expressive",
"type": "library",
"description": "Zend Expressive implementation for chimera/routing",
"license": "MIT",
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"chimera/foundation": "^0.4",
"chimera/routing": "^0.4",
"psr/http-message": "^1.0",
"zendframework/zend-diactoros": "^2.2",
"zendframework/zend-expressive": "^3.2",
"zendframework/zend-expressive-fastroute": "^3.0",
"zendframework/zend-expressive-helpers": "^5.3",
"zendframework/zend-expressive-router": "^3.1"
},
"provide": {
"chimera/routing-implementation": "0.4.0"
},
"require-dev": {
"infection/infection": "^0.21",
"lcobucci/coding-standard": "^6.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^9.5"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Chimera\\Routing\\Expressive\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Chimera\\Routing\\Expressive\\Tests\\": "tests"
}
},
"abandoned": "chimera/routing-mezzio"
}