-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.24 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
54
55
56
{
"name": "nazg/framework",
"description": "Http Microframework for Hack",
"keywords": [
"hhvm",
"hack",
"cache",
"middleware",
"dependency injection"
],
"license": "MIT",
"authors": [
{
"name": "Yuuki Takezawa",
"email": "[email protected]"
}
],
"require": {
"hhvm": "^4.62",
"hhvm/hsl": "^4.0",
"hhvm/hsl-experimental": "^4.50",
"hhvm/hhvm-autoload": "^3.0",
"ytake/hungrr": "^0.13.2",
"ytake/hhypermedia": "^0.6.1",
"nazg/glue": "^1.5",
"nazg/heredity": "^1.12.1",
"nazg/hcache": "^0.6.1",
"nazg/http-server-request-handler": "^0.6.0",
"nazg/http-executor": "^0.12.1",
"facebook/hack-router": "^0.19.6",
"facebook/hh-clilib": "^2.5.0",
"facebook/hack-http-request-response-interfaces": "^0.3",
"hack-logging/hack-logging": "^0.7.1"
},
"require-dev": {
"facebook/fbexpect": "^2.6.1",
"hhvm/hhast": "^4.0",
"hhvm/hacktest": "^2.0"
},
"autoload-dev": {
"psr-4": {
"NazgTest\\": "tests/"
},
"files": [
"tests/Struct/Shapes.php"
]
},
"scripts": {
"tests": [
"hhvm ./vendor/bin/hacktest.hack tests/"
],
"register": [
"hhvm ./vendor/bin/hh-autoload.hack"
]
}
}