-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
48 lines (48 loc) · 1.01 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
{
"name": "miladrahimi/phprouter",
"description": "A powerful, lightweight, and very fast HTTP URL router for PHP projects.",
"keywords": [
"Route",
"Router",
"Routing",
"URL Router",
"HTTP Router",
"URL",
"HTTP"
],
"homepage": "https://github.com/miladrahimi/phprouter",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Milad Rahimi",
"email": "[email protected]",
"homepage": "https://miladrahimi.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/miladrahimi/phprouter/issues"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"laminas/laminas-diactoros": "^2",
"miladrahimi/phpcontainer": "^5"
},
"require-dev": {
"phpunit/phpunit": "^7|^8|^9"
},
"autoload": {
"psr-4": {
"MiladRahimi\\PhpRouter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MiladRahimi\\PhpRouter\\Tests\\": "tests/"
}
}
}