forked from Craffft/contao-calendar-ical-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.11 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
{
"name": "craffft/contao-calendar-ical-bundle",
"type": "contao-bundle",
"description": "iCal support for calendar of Contao OpenSource CMS",
"keywords": [
"ical",
"calendar",
"contao"
],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Helmut Schottmüller",
"homepage": "https://github.com/hschottm"
},
{
"name": "Daniel Kiesel",
"email": "[email protected]",
"homepage": "http://craffft.de"
}
],
"support": {
"issues": "https://github.com/Craffft/contao-calendar-ical-bundle/issues",
"source": "https://github.com/Craffft/contao-calendar-ical-bundle"
},
"require": {
"php": ">=5.6.0",
"contao/core-bundle": ">=4.2,<5.0",
"kigkonsult/icalcreator": "^2.24"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"conflict": {
"contao/core": "*"
},
"autoload": {
"psr-4": {
"Craffft\\ContaoCalendarICalBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "4.2.x-dev"
},
"contao-manager-plugin": "Craffft\\ContaoCalendarICalBundle\\ContaoManager\\Plugin"
}
}