forked from contao-community-alliance/dc-general
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
102 lines (102 loc) · 2.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "contao-community-alliance/dc-general",
"description": "Universal data container for Contao",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"framework",
"data",
"container",
"driver",
"php",
"contao"
],
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "https://www.cyberspectrum.de",
"role": "Developer"
},
{
"name": "Stefan Heimes",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://c-c-a.org/",
"support": {
"issues": "https://github.com/contao-community-alliance/dc-general/issues",
"wiki": "https://de.contaowiki.org/DC_General",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/contao-community-alliance/dc-general"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"contao-community-alliance/events-contao-bindings": "^4.13",
"contao-community-alliance/translator": "^2.4.2",
"contao-community-alliance/url-builder": "^1.3",
"contao/core-bundle": "^4.13",
"contao/image": "^1.1",
"doctrine/cache": "^1.13 || ^2.1",
"doctrine/dbal": "^3.5",
"knplabs/knp-menu": "^3.1",
"psr/event-dispatcher": "^1.0",
"symfony/cache": "^5.4",
"symfony/cache-contracts": "^2.5.2",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/expression-language": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/polyfill-mbstring": "^1.0",
"symfony/routing": "^5.4",
"symfony/security-core": "^5.4",
"symfony/security-csrf": "^5.4",
"symfony/translation-contracts": "^2.5",
"twig/twig": "^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.8",
"friendsofsymfony/http-cache": "^2.9",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"php-http/guzzle6-adapter": "^2.0",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"conflict": {
"menatwork/contao-multicolumnwizard-bundle": "<3.4.9"
},
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\DcGeneral\\": "src/"
},
"classmap": [
"contao-compat/DC_General.php"
],
"files": [
"src/deprecated-autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\DcGeneral\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": false,
"php-http/discovery": false
}
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
},
"contao-manager-plugin": "ContaoCommunityAlliance\\DcGeneral\\ContaoManager\\Plugin"
}
}