-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 977 Bytes
/
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
{
"name": "pdir/contao-theme-helper-bundle",
"type":"contao-bundle",
"description": "pdir theme helper bundle for Contao 4",
"keywords":["contao","theme","template", "tools", "helper"],
"homepage": "https://pdir.de",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Webdesign für Dresden",
"homepage": "https://pdir.de",
"email" : "[email protected]",
"role" : "Developer"
}
],
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/pdir/contao-theme-helper-bundle/issues",
"source" : "https://github.com/pdir/contao-theme-helper-bundle"
},
"require": {
"php": ">=7.0.0",
"contao/core-bundle": "^4.4"
},
"conflict": {
"contao/core": "*"
},
"autoload": {
"psr-4": {
"Pdir\\ThemeHelperBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
]
},
"extra": {
"contao-manager-plugin": "Pdir\\ThemeHelperBundle\\ContaoManager\\Plugin"
}
}