forked from terminal42/contao-changelanguage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.48 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
{
"name":"terminal42/contao-changelanguage",
"description":"ChangeLanguage extension for Contao Open Source CMS",
"keywords":["contao", "change", "language"],
"type":"contao-module",
"license":"LGPL-3.0+",
"authors":[
{
"name":"terminal42 gmbh",
"homepage":"http://terminal42.ch"
}
],
"require":{
"php":">=5.4",
"contao/core-bundle":"~3.5 || ~4.1",
"contao-community-alliance/composer-plugin":"^2.4.1 || ~3.0",
"codefog/contao-haste": "~4.13",
"menatwork/contao-multicolumnwizard": "^3.3"
},
"require-dev": {
"contao/core":"~3.5",
"friendsofphp/php-cs-fixer": "^2.1",
"phpunit/phpunit": "4.*",
"phpunit/dbunit": "~1.3",
"satooshi/php-coveralls": "~0.6"
},
"conflict": {
"terminal42/contao-newslanguage": "*",
"aschempp/contao-calendarlanguage": "*",
"contao-legacy/newslanguage": "*",
"contao-legacy/calendarlanguage": "*"
},
"replace": {
"contao-legacy/changelanguage": "self.version"
},
"autoload": {
"psr-0": {
"Terminal42\\ChangeLanguage\\": "library/"
}
},
"extra":{
"branch-alias": {
"dev-develop": "3.2.x-dev"
},
"contao": {
"sources": {
"": "system/modules/changelanguage"
},
"runonce": [
"config/update.php"
]
}
}
}