-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 875 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 875 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
{
"name": "phpsgi/funk",
"description": "An implementation of PHPSGI middleware specification",
"homepage": "https://github.com/phpsgi/Funk",
"keywords": [
"http",
"middleware",
"server",
"phpsgi"
],
"authors": [
{
"name": "c9s",
"email": "[email protected]"
}
],
"require": {
"universal/universal": "2.0.x-dev",
"phpsgi/phpsgi": "@dev"
},
"license": "MIT",
"suggest": {
"corneltek/pux": "2.0.x-dev",
"corneltek/cliframework": "4.0.x-dev"
},
"require-dev": {
"corneltek/pux": "2.0.x-dev",
"willdurand/negotiation": "^1.4",
"willdurand/geocoder": "^3.1"
},
"autoload": {
"psr-4": { "Funk\\": "src/" }
},
"extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }
}