-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.04 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
{
"name": "phoole/route",
"type": "library",
"license": "Apache-2.0",
"version": "1.1.0",
"description": "Slim, fast and full compatible PSR-7 & PSR-15 routing library for PHP",
"keywords": [
"phoole",
"library",
"php",
"psr-7",
"psr-15",
"middleware",
"route",
"fast-route",
"swoole"
],
"authors": [
{
"name": "Hong Zhang",
"homepage": "https://github.com/phoole"
}
],
"require": {
"php": ">=7.2.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0.1",
"phoole/base": "^1.0.20"
},
"require-dev": {
"phpunit/phpunit": "^8",
"guzzlehttp/psr7": "1.*"
},
"autoload": {
"psr-4": {
"Phoole\\Route\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phoole\\Tests\\": "tests/"
}
},
"provide": {
"psr/http-server-middleware-implementation": "^1.0"
},
"minimum-stability": "dev",
"scripts": {
"test": "phpunit",
"check": "phpcs --standard=psr12 src/",
"format": "phpcbf --standard=psr12 src/"
}
}