forked from thephpleague/route
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "league/route",
"description": "Fast routing and dispatch component including PSR-15 middleware, built on top of FastRoute.",
"keywords": [
"league",
"route",
"router",
"dispatcher",
"psr-7",
"psr7",
"psr-15",
"psr15"
],
"homepage": "https://github.com/thephpleague/route",
"license": "MIT",
"authors": [
{
"name": "Phil Bennett",
"email": "philipobenito@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"nikic/fast-route": "^1.0",
"psr/container": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "^7.0",
"squizlabs/php_codesniffer": "^3.3",
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-phpunit": "^0.10.0"
},
"replace": {
"orno/route": "~1.0",
"orno/http": "~1.0"
},
"autoload": {
"psr-4": {
"League\\Route\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Route\\": "tests"
},
"files": ["tests/Fixture/function.php"]
},
"extra": {
"branch-alias": {
"dev-4.x": "4.x-dev",
"dev-3.x": "3.x-dev",
"dev-2.x": "2.x-dev",
"dev-1.x": "1.x-dev"
}
},
"scripts": {
"analyze": "phpstan analyse -l 4 --no-progress src"
}
}