-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 991 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
40
41
{
"name": "comolo/contao-supertheme",
"type": "contao-module",
"description": "SuperTheme is a Contao module to easily add assets to a page layout.",
"keywords": [
"contao",
"theme",
"supertheme"
],
"homepage": "https://github.com/comolo/contao-supertheme",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Hendrik Obermayer, Comolo GmbH",
"homepage": "http://www.comolo.de",
"role": "Developer"
}
],
"require": {
"contao/core-bundle": "^4.4",
"leafo/scssphp": "~0.6",
"comolo/php-scssphp-compass": "~0.1",
"coffeescript/coffeescript": "~1.3",
"matthiasmullie/minify": "^1.3"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Comolo\\SuperThemeBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Comolo\\SuperThemeBundle\\ContaoManager\\Plugin"
}
}