forked from hofff/contao-language-relations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1013 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
42
{
"name": "hofff/contao-language-relations",
"description": "Maintaining relations between translated pages.",
"keywords": [ "utility", "translation", "page", "tree", "contao" ],
"type": "contao-module",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Oliver Hoff",
"email": "[email protected]",
"homepage": "http://hofff.com/",
"role": "Developer"
}
],
"require": {
"php": "^5.5 || ^7.0",
"contao/core": "^3.5",
"contao-community-alliance/composer-plugin": "^2.0",
"hofff/contao-selectri": "^3.0 || ^4.0",
"hofff/contao-root-relations": "^2.0",
"menatwork/contao-multicolumnwizard" : "^3.2"
},
"replace": {
"contao-community-alliance/language-relations": "self.version"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\LanguageRelations\\": "src/"
}
},
"extra": {
"contao": {
"sources": {
"contao-module": "system/modules/hofff_language_relations"
},
"runonce": [
"runonce/01_renameDatabaseResources.php",
"runonce/dropViews.php"
]
}
}
}