-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
49 lines (49 loc) · 1.29 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": "friends-of-contao/contao-privacy",
"description": "Contao bundle that adds a privacy policy consent checkbox to the registration",
"keywords":["privacy", "Datenschutz", "DSGVO", "GDPR", "registration", "policy"],
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Christian Barkowsky",
"homepage": "https://christianbarkowsky.de/",
"role": "Developer"
},
{
"name": "Mathias Arzberger",
"homepage": "https://pdir.de/",
"role": "Developer"
},
{
"name": "Fritz Michael Gschwantner",
"homepage": "https://www.inspiredminds.at",
"role": "Developer"
},
{
"name": "Nicky Hoff",
"homepage": "https://www.hofff.com",
"email": "nick@hofff.com",
"role": "Manager"
}
],
"support": {
"issues": "https://github.com/friends-of-contao/contao-privacy/issues",
"source": "https://github.com/friends-of-contao/contao-privacy"
},
"require": {
"php": "^7.0",
"contao/core-bundle": "4.4.* || 4.5.*"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Foc\\ContaoPrivacyBundle\\": "src"
}
},
"extra": {
"contao-manager-plugin": "Foc\\ContaoPrivacyBundle\\ContaoManager\\Plugin"
}
}