-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.05 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
{
"name":"designs2/usage-statistic-client",
"description":"Contao usage statistics client",
"keywords":["usage", "statistic", "contao"],
"type":"contao-module",
"homepage":"http://c-c-a.org/",
"license":"LGPL-3.0+",
"authors": [
{
"name":"Tristan Lins",
"email":"[email protected]",
"homepage":"http://bit3.de/",
"role":"Developer"
}
],
"support":{
"issues":"https://github.com/contao-community-alliance/usage-statistic-client/issues",
"irc":"irc://irc.freenode.org/contao.dev",
"source":"https://github.com/designs2/usage-statistic-client"
},
"require": {
"php":">=5.3",
"contao/core":">=2.11,<4.0",
"guzzle/guzzle": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~3.7"
},
"autoload": {
"psr-0": {
"ContaoCommunityAlliance\\UsageStatistic\\Client": "src",
"ContaoCommunityAlliance\\UsageStatistic\\Client\\Test": "test"
}
},
"extra":{
"contao": {
"sources": {
"module": "system/modules/usage-statistic"
}
},
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
}
}
}