forked from hoaproject/Compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.7 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
{
"name" : "hoa/compiler",
"description": "The Hoa\\Compiler library.",
"type" : "library",
"keywords" : ["library", "compiler", "grammar", "language", "ll1",
"llk", "regular", "algebraic", "context-free", "lexer",
"parser", "token", "rule", "pp", "ast", "trace", "syntax",
"sampler", "isotropic", "random", "uniform", "exhaustive",
"coverage"],
"homepage" : "https://hoa-project.net/",
"license" : "BSD-3-Clause",
"authors" : [
{
"name" : "Ivan Enderlin",
"email": "[email protected]"
},
{
"name" : "Hoa community",
"homepage": "https://hoa-project.net/"
}
],
"support": {
"email" : "[email protected]",
"irc" : "irc://chat.freenode.net/hoaproject",
"forum" : "https://users.hoa-project.net/",
"docs" : "https://central.hoa-project.net/Documentation/Library/Compiler",
"source": "https://central.hoa-project.net/Resource/Library/Compiler"
},
"require": {
"php" : ">=5.5.0",
"hoa/consistency": "~1.0",
"hoa/exception" : "~1.0",
"hoa/file" : "~1.0",
"hoa/iterator" : "~2.0",
"hoa/math" : "~1.0",
"hoa/protocol" : "~1.0",
"hoa/regex" : "~1.0",
"hoa/visitor" : "~2.0"
},
"require-dev": {
"hoa/json": "~2.0",
"hoa/test": "~2.0"
},
"autoload": {
"psr-4": {
"Hoa\\Compiler\\": "."
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}