-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.08 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "wiphi/contao-freizeitkalender",
"description": "Synchronisiert die Events mit dem Freizeitkalender (freizeitkalender.eu).",
"keywords": ["contao", "module", "Freizeitkalender freizeitkalender.eu"],
"type": "contao-bundle",
"homepage": "https://github.com/wiphi/contao-freizeitkalender",
"license": "MIT",
"authors":[
{
"name": "Philipp Winkel",
"homepage": "https://github.com/wiphi/contao-freizeitkalender",
"role": "Developer"
}
],
"support":{
"issues": "https://github.com/wiphi/contao-freizeitkalender/issues",
"source": "https://github.com/wiphi/contao-freizeitkalender"
},
"require":{
"php": "^8.2",
"contao/core-bundle": "~5.3",
"contao/calendar-bundle": "~5.3"
},
"autoload":{
"psr-4": {
"WiPhi\\Freizeitkalender\\": "src/"
},
"classmap": [
"contao/"
],
"exclude-from-classmap": [
"contao/config/",
"contao/dca/",
"contao/languages/",
"contao/templates/"
]
},
"extra":{
"contao-manager-plugin": "WiPhi\\Freizeitkalender\\ContaoManager\\Plugin"
}
}