-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.89 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
{
"name": "oneup/contao-language-dependent-modules-bundle",
"type": "contao-bundle",
"description": "Configure your Contao modules language dependent and have less page layouts!",
"keywords": [
"contao",
"modules",
"multilanguage"
],
"homepage": "https://1up.io",
"license": "MIT",
"authors": [
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
}
],
"require": {
"php": "^7.4 | ^8.0",
"contao/core-bundle": "^4.9",
"doctrine/dbal": "^2.13 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"contao/news-bundle": "^4.9",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5"
},
"config": {
"preferred-install": {
"contao/core-bundle": "source",
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"ocramius/package-versions": true
}
},
"extra": {
"contao-manager-plugin": "Oneup\\Contao\\LanguageDependentModulesBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Oneup\\Contao\\LanguageDependentModulesBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oneup\\Contao\\LanguageDependentModulesBundle\\Tests\\": "tests"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/1up-lab/contao-language-dependent-modules-bundle/issues",
"source": "https://github.com/1up-lab/contao-language-dependent-modules-bundle/issues"
}
}