-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 866 Bytes
/
composer.json
File metadata and controls
47 lines (47 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
41
42
43
44
45
46
47
{
"name": "nazg/hcache",
"description": "cache that boosts performance",
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"keywords": [
"hack",
"hhvm",
"cache"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "yuuki.takezawa@comnect.jp.net"
}
],
"require": {
"hhvm": "^4.62",
"hhvm/hsl": "^4.0",
"hhvm/hsl-experimental": "^4.25",
"hhvm/hhvm-autoload": "^3.0"
},
"require-dev": {
"hhvm/hacktest": "^2.0.0",
"facebook/fbexpect": "^2.7.3",
"hhvm/hhast": "^4.0.0"
},
"autoload": {
"psr-4": {
"Nazg\\HCache\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"tests": [
"hhvm ./vendor/bin/hacktest.hack tests/"
],
"register": [
"hhvm ./vendor/bin/hh-autoload.hack"
]
}
}