-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.43 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
{
"name": "articus/path-handler",
"description": "Library for API development with Mezzio that simplifies creating operation middlewares and registering them in router",
"keywords": [
"middleware",
"API",
"laminas",
"mezzio",
"routing",
"dispatch"
],
"license": "MIT",
"authors": [
{
"name": "Arthur Mogliev"
}
],
"require": {
"php": "^8.1",
"mezzio/mezzio": "^3.18",
"articus/plugin-manager": "^0.1"
},
"suggest": {
"psr/simple-cache": "It is required for Articus\\PathHandler\\MetadataProvider\\PhpAttribute",
"laminas/laminas-stdlib": "It is required for Articus\\PathHandler\\MetadataProvider\\PhpAttribute",
"nikic/fast-route": "It is required for Articus\\PathHandler\\Router\\FastRoute",
"articus/data-transfer": "It is required for Articus\\PathHandler\\Attribute\\Transfer and Articus\\PathHandler\\Producer\\Transfer"
},
"require-dev": {
"laminas/laminas-diactoros": "^3.3",
"psr/simple-cache": "^2.0|^3.0",
"laminas/laminas-stdlib": "^3.19",
"nikic/fast-route": "^1.3",
"articus/data-transfer": "^0.6",
"ext-json": "*",
"ext-uopz": "*",
"phpspec/phpspec": "^5.1|^6.1|^7.0",
"friends-of-phpspec/phpspec-code-coverage": "*",
"phpunit/php-code-coverage": "^9.2",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\": "spec"
}
}
}