This repository has been archived by the owner on Sep 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
49 lines (49 loc) · 1.59 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
{
"name" : "hoa/test",
"description": "The Hoa\\Test library.",
"type" : "library",
"keywords" : ["library", "test", "praspel", "atoum"],
"homepage" : "https://hoa-project.net/",
"license" : "BSD-3-Clause",
"authors" : [
{
"name" : "Ivan Enderlin",
"email": "ivan.enderlin@hoa-project.net"
},
{
"name" : "Hoa community",
"homepage": "https://hoa-project.net/"
}
],
"support": {
"email" : "support@hoa-project.net",
"irc" : "irc://chat.freenode.net/hoaproject",
"forum" : "https://users.hoa-project.net/",
"docs" : "https://central.hoa-project.net/Documentation/Library/Test",
"source": "https://central.hoa-project.net/Resource/Library/Test"
},
"require": {
"atoum/atoum" : "~3.0",
"atoum/praspel-extension" : "~0.17",
"atoum/ruler-extension" : "~1.3",
"atoum/visibility-extension": "~1.3",
"hoa/cli" : "dev-master",
"hoa/consistency" : "dev-master",
"hoa/console" : "dev-master",
"hoa/file" : "dev-master",
"hoa/kitab" : "~0.6",
"hoa/protocol" : "dev-master",
"hoa/ustring" : "dev-master"
},
"autoload": {
"psr-4": {
"Hoa\\Test\\" : "Source",
"Hoa\\Test\\Bin\\": "Bin"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}