-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 962 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 962 Bytes
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
{
"name": "pedroac/routing",
"type": "library",
"description": "Flexible HTTP routing library.",
"keywords": ["router", "http", "pretty-urls"],
"authors": [
{
"name": "Pedro Amaral Couto",
"email": "pedro.amaral.couto@gmail.com",
"role": "Developer"
}
],
"license": "MIT",
"config": {
"vendor-dir": "./php/vendor"
},
"autoload": {
"psr-4": {"pedroac\\routing\\": "php/lib"}
},
"require": {
"php": ">=7.1",
"psr/http-message": "@stable",
"psr/http-server-handler": "@stable"
},
"suggest": {
"jasny/http-message": "@stable"
},
"require-dev": {
"phpunit/phpunit": "^7.1.2",
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd" : "@stable",
"phpdocumentor/phpdocumentor": "@stable",
"codacy/coverage": "@stable",
"jasny/http-message": "@stable"
}
}