-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (37 loc) · 1.06 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
{
"name": "danielgausi/contao-calendareditor-bundle",
"description": "Contao Extension to create and edit calendar events in the frontend.",
"keywords": ["contao",
"calendar",
"calendar_editor",
"calendar editor",
"calendar frontend",
"events", "frontend",
"events frontend"],
"type": "contao-bundle",
"homepage": "https://github.com/DanielGausi/Contao-CalendarEditor",
"license": "LGPL-3.0-or-later",
"require": {
"php": ">=5.6.0",
"contao/core-bundle": "~4.4" ,
"menatwork/contao-multicolumnwizard": "^3.3",
"hofff/contao-calendarfield": "^3.0"
},
"autoload": {
"psr-4": {
"DanielGausi\\CalendarEditorBundle\\": "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": "DanielGausi\\CalendarEditorBundle\\ContaoManager\\Plugin"
}
}