-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.29 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
57
58
59
60
{
"name": "nazg/nazg-session",
"description": "Session container and middleware for HHVM/Hack, facebook/hack-http-request-response-interfaces",
"type": "project",
"keywords": [
"hhvm",
"hack",
"session",
"middleware"
],
"license": "MIT",
"authors": [
{
"name": "Yuuki Takezawa",
"email": "[email protected]"
}
],
"require": {
"hhvm": "^4.44",
"facebook/hack-http-request-response-interfaces": "^0.3",
"hhvm/hhvm-autoload": "^3.0",
"hhvm/hsl": "^4.0",
"hhvm/hsl-experimental": "^4.50",
"nazg/http-server-request-handler": "^0.6.0",
"ytake/extended-hack-http-request": "^0.1.2"
},
"require-dev": {
"facebook/fbexpect": "^2.7",
"hhvm/hacktest": "^2.0",
"hhvm/hhast": "^4.0",
"nazg/hcache": "^0.6.1",
"ytake/hack-cookie": "^0.1.1",
"ytake/hungrr": "^0.13.2"
},
"autoload": {
"psr-4": {
"Nazg\\Session\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"tests": [
"hhvm ./vendor/bin/hacktest.hack tests/"
],
"register": [
"hhvm ./vendor/bin/hh-autoload.hack"
]
}
}