-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.67 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
{
"name": "contao-community-alliance/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-or-later",
"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/contao-community-alliance/usage-statistic-client"
},
"require": {
"php": "^5.6 || ^7.0",
"contao/core": "^3.5.5",
"contao-community-alliance/composer-plugin": "^2.0",
"contao-community-alliance/event-dispatcher": "^1.3",
"contao-community-alliance/events-cron": "^1.0",
"guzzlehttp/guzzle": "^5.0"
},
"require-dev": {
"phpcq/all-tasks": "^1.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\UsageStatistic\\Client\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\UsageStatistic\\Client\\Test\\": "tests"
}
},
"extra": {
"contao": {
"sources": {
"module": "system/modules/usage-statistic"
}
},
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
}
}
}