-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·40 lines (40 loc) · 866 Bytes
/
composer.json
File metadata and controls
executable file
·40 lines (40 loc) · 866 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
37
38
39
40
{
"name": "nazg/http-server-request-handler",
"description": "PSR-15 like HTTP Server Request Handler Interface",
"keywords": [
"hhvm",
"hack",
"http-handlers",
"request",
"server",
"middleware"
],
"homepage": "https://github.com/nazg-hack/http-server-request-handler",
"license": [
"MIT"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "yuuki.takezawa@comnect.jp.net"
}
],
"require": {
"hhvm": "^4.41",
"hhvm/hsl": "^4.0",
"hhvm/hsl-experimental": "^4.0",
"hhvm/hhvm-autoload": "^3.0",
"facebook/hack-http-request-response-interfaces": "^0.3"
},
"require-dev": {
"hhvm/hacktest": "^2.0",
"facebook/fbexpect": "^2.7",
"hhvm/hhast": "^4.0"
},
"autoload": {
"psr-4": {
"Nazg\\Http\\Server\\": "src/"
}
},
"minimum-stability": "stable"
}