-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
103 lines (103 loc) · 2.87 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
103
{
"name": "metamodels/core",
"description": "MetaModels core",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"metamodels",
"core"
],
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "https://www.cyberspectrum.de",
"role": "Developer"
},
{
"name": "Stefan Heimes",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://now.metamodel.me/",
"support": {
"email": "[email protected]",
"issues": "https://github.com/MetaModels/core/issues",
"wiki": "https://de.contaowiki.org/MetaModels",
"irc": "irc://irc.freenode.org/contao.mm",
"source": "https://github.com/MetaModels/core"
},
"require": {
"php": "^8.1",
"ext-dom": "*",
"contao-community-alliance/dc-general": "^2.3.15",
"contao-community-alliance/events-contao-bindings": "^4.13.1",
"contao-community-alliance/meta-palettes": "^2.0.10",
"contao-community-alliance/translator": "^2.4.2",
"contao-community-alliance/url-builder": "^1.3.3",
"contao/core-bundle": "^4.13.5 <5.0",
"discordier/justtextwidgets": "^1.3",
"doctrine/cache": "^2.1",
"doctrine/dbal": "^3.6.0",
"doctrine/orm": "^2.16.0",
"menatwork/contao-multicolumnwizard-bundle": "^3.6.7",
"psr/container": "^1.1.2",
"psr/log": "^2.0.0",
"symfony/asset": "^5.4",
"symfony/cache": "^5.4",
"symfony/config": "^5.4",
"symfony/console": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/deprecation-contracts": "^3.3.0",
"symfony/event-dispatcher": "^5.4",
"symfony/event-dispatcher-contracts": "^2.5.2",
"symfony/filesystem": "^5.4",
"symfony/finder": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/routing": "^5.4",
"symfony/security-core": "^5.4",
"symfony/service-contracts": "^2.5.2",
"symfony/translation": "^5.4",
"symfony/translation-contracts": "^2.5.2",
"terminal42/service-annotation-bundle": "^1.0",
"twig/twig": "^3.7.0"
},
"require-dev": {
"contao/manager-bundle": "^4.13.0 <5.0",
"contao/manager-plugin": "^2.8",
"doctrine/doctrine-bundle": "^1.8.1 || ^2.8.3",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"autoload": {
"psr-4": {
"MetaModels\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MetaModels\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": false,
"php-http/discovery": false
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-release/2.3.0": "2.3.x-dev"
},
"contao": {
"runonce": [
"runonce/runonce.php"
]
},
"contao-manager-plugin": "MetaModels\\CoreBundle\\ContaoManager\\Plugin"
}
}