-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.17 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
{
"name": "erdmannfreunde/contao-survey-sendmail",
"description": "Extends the contao survey extension with a new notification center type to send survey results.",
"type": "contao-bundle",
"require": {
"php": "^5.6 || ^7.0",
"contao/core-bundle": "4.4.*",
"symfony/framework-bundle": "^3.3",
"linking-you/contao-survey": "^1.0",
"terminal42/notification_center": "^1.5"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Erdmann & Freunde",
"homepage": "https://erdmann-freunde.de",
"email": "moin@erdmann-freunde.de"
},
{
"name": "Sebastian Buck",
"homepage": "https://bastibuck.de",
"email": "moin@erdmann-freunde.de"
},
{
"name": "Frank Mueller",
"email": "frank.mueller@linking-you.de",
"homepage": "https://www.linking-you.de"
}
],
"autoload": {
"psr-4": {
"EuF\\ContaoSurveySendmail\\": "src/"
}
},
"extra" : {
"contao-manager-plugin": "EuF\\ContaoSurveySendmail\\ContaoManager\\Plugin"
}
}