-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·71 lines (71 loc) · 1.84 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "nuxed/framework",
"type": "framework",
"description": "High Performance, Asynchronous, Hack Framework for building web applications with expressive, elegant syntax.",
"keywords": [
"hack",
"hhvm",
"framework",
"nuxed",
"async"
],
"license": "MIT",
"authors": [
{
"name": "Saif Eddin Gmati",
"email": "azjezz@protonmail.com",
"homepage": "https://azjezz.github.io"
},
{
"name": "Nuxed Community",
"homepage": "https://github.com/nuxed/framework/graphs/contributors"
}
],
"require": {
"hhvm": "^4.14",
"hhvm/hsl": "^4.7",
"hhvm/hsl-experimental": "^4.7",
"hhvm/hhvm-autoload": "^2.0",
"hhvm/type-assert": "^3.4",
"azjezz/http-normalizer": "^0.2",
"facebook/fbmarkdown": "^1.5",
"facebook/hack-router": "^0.19",
"facebook/xhp-lib": "^2.9",
"his/container": "^0.1"
},
"require-dev": {
"hhvm/hhast": "^4.15",
"facebook/fbexpect": "^2.4",
"hhvm/hacktest": "^1.4"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Nuxed\\": "src/Nuxed/"
}
},
"autoload-dev": {
"psr-4": {
"Nuxed\\Test\\": "tests/Nuxed/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check": [
"@type-check",
"@lint",
"@test"
],
"lint": "hhast-lint -v src/",
"test": "hacktest tests/",
"type-check": "hh_client src/"
},
"support": {
"issues": "https://github.com/nuxed/framework/issues",
"chat": "https://gitter.im/nuxed/framework",
"source": "https://github.com/nuxed/framework"
}
}