forked from thephpleague/route
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.17 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
{
"name": "league/route",
"description": "A fast routing and dispatch package built on top of FastRoute.",
"keywords": [
"league",
"route",
"dispatcher",
"psr-7",
"psr7"
],
"homepage": "https://github.com/thephpleague/route",
"license": "MIT",
"authors": [
{
"name": "Phil Bennett",
"email": "[email protected]",
"homepage": "http://www.philipobenito.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"league/container": "^2.0",
"nikic/fast-route": "^0.7",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "^4.0"
},
"replace": {
"orno/route": "~1.0",
"orno/http": "~1.0"
},
"autoload": {
"psr-4": {
"League\\Route\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Route\\Test\\": "tests"
},
"files": ["tests/Asset/functions.php"]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"1.x": "1.x-dev"
}
}
}