-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
51 lines (51 loc) · 1.27 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
{
"name": "kmielke/calendar-extended-bundle",
"description": "Contao 4 LTS calendar extension bundle. Better recurring events and exceptions.",
"keywords": [
"contao",
"fullcalendar",
"calendar",
"events",
"exceptions",
"registration",
"vacations"
],
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Kester Mielke",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"contao/core-bundle": "^4.4",
"contao/calendar-bundle": "^4.4",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"terminal42/notification_center": "^1.5"
},
"require-dev": {
"terminal42/contao-leads": "^1.4"
},
"suggest": {
"terminal42/contao-leads": "Supports user registration - but only compatible with leads in version 1!"
},
"autoload": {
"psr-4": {
"Kmielke\\CalendarExtendedBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"extra": {
"contao-manager-plugin": "Kmielke\\CalendarExtendedBundle\\ContaoManager\\Plugin"
}
}