-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.12 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
{
"name": "inroutephp/inroute",
"description": "Generate http routing and dispatching middleware from docblock annotations",
"keywords": ["annotations", "web-router", "middleware", "psr-15", "openapi"],
"homepage": "https://github.com/inroutephp/inroute",
"type": "library",
"license": "Unlicense",
"authors": [
{
"name": "Hannes Forsgård",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"inroutephp\\inroute\\": "src/"
}
},
"require": {
"php": ">=7.2",
"psr/container": "^1",
"psr/http-factory": "^1",
"psr/http-message": "^1",
"psr/http-server-middleware": "^1",
"aura/router": "^3",
"symfony/var-exporter": "^5"
},
"require-dev": {
"doctrine/annotations": "^1.6",
"zircote/swagger-php": "^3",
"laminas/laminas-diactoros": "^2",
"laminas/laminas-httphandlerrunner": "^1"
},
"suggest": {
"doctrine/annotations:1": "For compiling",
"zircote/swagger-php:3": "For building openapi apps"
}
}