-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.26 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 2.26 KB
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
{
"name": "terminal42/dc_multilingual",
"description": "A multilingual DC driver storing the translations in the same table for Contao Open Source CMS",
"keywords": ["contao", "multilingual", "driver"],
"type": "contao-bundle",
"license": "LGPL-3.0+",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "https://www.terminal42.ch"
},
{
"name": "Codefog",
"homepage": "https://codefog.pl"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/terminal42"
},
{
"type": "other",
"url": "https://ko-fi.com/terminal42"
}
],
"support": {
"issues": "https://github.com/terminal42/contao-DC_Multilingual/issues",
"source": "https://github.com/terminal42/contao-DC_Multilingual",
"forum": "https://community.contao.org"
},
"require": {
"php": "^8.3",
"contao/core-bundle": "^5.7",
"doctrine/dbal": "^3.7 || ^4.3",
"knplabs/knp-menu": "^3.1",
"symfony/config": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/deprecation-contracts": "^3",
"symfony/http-foundation": "^7.4",
"symfony/http-kernel": "^7.4",
"symfony/routing": "^7.4",
"symfony/translation-contracts": "^3"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"terminal42/contao-build-tools": "dev-main"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"classmap": [
"src/DC_Multilingual.php"
],
"psr-4": {
"Terminal42\\DcMultilingualBundle\\": "src"
}
},
"extra": {
"contao-manager-plugin": "Terminal42\\DcMultilingualBundle\\ContaoManager\\Plugin"
},
"scripts": {
"ecs-legacy": "@php vendor/terminal42/contao-build-tools/tools/ecs/vendor/bin/ecs check src/Driver.php --config ecs-legacy.php --fix --ansi"
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"php-http/discovery": false,
"contao/manager-plugin": false,
"terminal42/contao-build-tools": true
}
}
}