forked from DanielGausi/Contao-CalendarEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (45 loc) · 1.28 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
{
"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": "^8.2",
"contao/core-bundle": "~4.13" ,
"contao/calendar-bundle": "~4.13",
"menatwork/contao-multicolumnwizard-bundle": "^3.0",
"hofff/contao-calendarfield": "^4.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"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": true,
"contao-community-alliance/composer-plugin": true
}
}
}