forked from miladrahimi/phprouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 977 Bytes
/
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
{
"name": "miladrahimi/phprouter",
"description": "HTTP URL Router for PHP Projects",
"keywords": ["Router", "URL Router", "HTTP Router", "Routing", "URL", "HTTP", "Route"],
"homepage": "https://github.com/miladrahimi/phprouter",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Milad Rahimi",
"email": "[email protected]",
"homepage": "http://miladrahimi.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/miladrahimi/phprouter/issues"
},
"require": {
"php": ">=7.0",
"ext-json": "*",
"zendframework/zend-diactoros": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^6"
},
"autoload": {
"psr-4": {
"MiladRahimi\\PhpRouter\\": "src/MiladRahimi/PhpRouter/",
"MiladRahimi\\PhpRouter\\Tests\\": "tests/"
}
}
}