This repository has been archived by the owner on May 12, 2019. It is now read-only.
forked from netzmacht-archive/contao-theme-plus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
79 lines (79 loc) · 2.26 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "bit3/contao-theme-plus",
"description": "Theme+ for Contao OpenSource CMS",
"keywords": [
"contao",
"theme",
"css",
"js",
"stylesheet",
"javascript",
"assets"
],
"type": "contao-module",
"homepage": "http://bit3.de",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Tristan Lins",
"email": "[email protected]",
"homepage": "http://bit3.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/bit3/contao-theme-plus/issues",
"wiki": "https://github.com/bit3/contao-theme-plus/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/bit3/contao-theme-plus"
},
"require": {
"php": ">=5.4",
"contao/core": ">=3.2,<3.6-dev",
"contao-community-alliance/composer-plugin": "~2.0",
"contao-community-alliance/event-dispatcher": "~1.3",
"contao-community-alliance/dependency-container": "~1.7",
"bit3/contao-meta-palettes": "~1.0",
"bit3/contao-assetic": "~2.0",
"bit3/contao-ikimea-browser-service": "~1.0",
"bit3/contao-mobile-detect-service": "~1.0",
"bit3/contao-twig": "~1.0",
"symfony/expression-language": "~2.4",
"doctrine/cache": "~1.0"
},
"require-dev": {
"phpcq/phpcq": "~1.0",
"phpcq/all-tasks": "~1.0",
"phpcq/coding-standard": "~1.0"
},
"replace": {
"contao-legacy/theme_plus": "self.version"
},
"conflict": {
"symfony/event-dispatcher": "<2.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bit3\\Contao\\ThemePlus\\": "src"
}
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/theme-plus",
"assets": "assets/theme-plus"
},
"runonce": [
"runonce/upgrade_to_contao3_2.php",
"runonce/upgrade_version5_0_0.php"
]
},
"branch-alias": {
"dev-master": "5.0.x-dev",
"dev-develop": "5.1.x-dev"
}
}
}