-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
67 lines (67 loc) · 1.61 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
{
"name": "friends-of-contao/contao-associategroups",
"description": "Creates association tables for member groups and user groups.",
"keywords": [
"contao",
"associate",
"member group",
"user group"
],
"type": "contao-module",
"license": "LGPL-3.0+",
"authors": [
{
"name":"terminal42 gmbh",
"homepage":"http://terminal42.ch"
},
{
"name" : "Oliver Hoff",
"email" : "[email protected]",
"homepage" : "https://www.hofff.com",
"role" : "Developer"
},
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "http://netzmacht.de",
"role": "Developer"
},
{
"name":"Cliff Parnitzky",
"email":"[email protected]",
"homepage" : "https://contao.cliff-parnitzky.de",
"role":"Developer"
}
],
"support": {
"issues": "https://github.com/friends-of-contao/contao-associategroups/issues",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/friends-of-contao/contao-associategroups"
},
"require": {
"php": ">=5.3",
"contao/core-bundle":"~3.5 || ~4.1",
"contao-community-alliance/composer-plugin":"^2.4.1 || ~3.0"
},
"conflict": {
"contao/core":"3.4.0,3.4.1,3.4.2"
},
"replace": {
"contao-legacy/associategroups": "*"
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/associategroups"
},
"runonce": [
"runonce/runonce.php"
]
},
"branch-alias": {
"dev-master": "1.3.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}