-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
56 lines (56 loc) · 1.35 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
{
"name": "contao-community-alliance/contao-twig",
"description": "Twig integration for Contao OpenSource CMS",
"keywords": [
"contao",
"theme",
"twig",
"template"
],
"type": "contao-module",
"homepage": "http://c-c-a.org",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "http://cyberspectrum.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/contao-community-alliance/twig/issues",
"wiki": "https://github.com/contao-community-alliance/twig/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/contao-community-alliance/twig"
},
"require": {
"php": ">=5.3",
"contao/core": "~3.2",
"contao-community-alliance/composer-plugin": "~2.0",
"contao-community-alliance/event-dispatcher": "~1.0",
"twig/twig": "~1.0"
},
"require-dev": {
"phpcq/all-tasks": "~1.0"
},
"replace": {
"contao-legacy/twig": "self.version",
"bit3/contao-twig": "self.version"
},
"autoload": {
"classmap": ["src/"]
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/twig"
}
},
"branch-alias": {
"dev-master": "1.12.x-dev",
"dev-develop": "1.13.x-dev"
}
}
}