-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.1 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
{
"name": "nuxed/http-router",
"type": "library",
"description": "Nuxed Http Router",
"license": "MIT",
"authors": [
{
"name": "azjezz",
"email": "azjezz@protonmail.com"
},
{
"name": "Nuxed Community",
"homepage": "https://github.com/nuxed/http-router/graphs/contributors"
}
],
"require": {
"hhvm": "^4.56",
"hhvm/hsl": "^4.40",
"nuxed/contract": "^1.0",
"facebook/hack-router": "^0.19.6",
"facebook/definition-finder": "^2.13",
"nuxed/filesystem": "^1.4",
"nuxed/environment": "^1.3"
},
"require-dev": {
"facebook/fbexpect": "^2.7",
"hhvm/hacktest": "^2.0",
"hhvm/hhast": "^4.25",
"nuxed/http-message": "^1."
},
"conflict": {
"hhvm/hsl-experimental": "<4.31.1"
},
"scripts": {
"check": [
"@type-check",
"@lint",
"@test"
],
"lint": "hhast-lint -v src/",
"test": "hacktest tests/",
"type-check": "hh_client src/"
}
}