-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1 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": "idealogica/route-one",
"description": "PSR-15 route middleware for advanced middleware routing.",
"keywords": ["router", "routing", "psr-7", "middleware", "route"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstatin Nikiforov",
"email": "[email protected]",
"homepage": "http://konstantin.idealogica.me"
}
],
"require": {
"php": ">=7.0.0",
"aura/router": "~3.1",
"psr/http-message": "~1.0",
"psr/container": "~1.0",
"mindplay/middleman": "~3.0.3",
"psr/http-server-middleware": "~1.0.1",
"psr/http-server-handler": "~1.0.1"
},
"require-dev": {
"idealogica/debug": "~1.1",
"phpunit/phpunit": "~7.5.20",
"laminas/laminas-diactoros": "~2.3.0"
},
"autoload":
{
"psr-4":
{
"Idealogica\\RouteOne\\": "src/"
},
"files": [
"src/helpers.php"
]
}
}