-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.02 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.02 KB
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
{
"name": "nazg/http-executor",
"description": "HTTP Component and Emit Responses",
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"keywords": [
"hack",
"hhvm",
"request",
"response",
"http"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "yuuki.takezawa@comnect.jp.net"
}
],
"require": {
"hhvm": "^4.62",
"hhvm/hsl": "^4.0",
"hhvm/hsl-experimental": "^4.37",
"hhvm/hhvm-autoload": "^3.0",
"facebook/hack-http-request-response-interfaces": "^0.3",
"nazg/http-server-request-handler": "^0.6"
},
"require-dev": {
"hhvm/hacktest": "^2.0",
"facebook/fbexpect": "^2.7",
"hhvm/hhast": "^4.0",
"ytake/hungrr": "^0.13"
},
"autoload": {
"psr-4": {
"Nazg\\HttpExecutor\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"tests": [
"hhvm ./vendor/bin/hacktest.hack tests/"
],
"register": [
"hhvm ./vendor/bin/hh-autoload.hack"
]
}
}