-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
100 lines (100 loc) · 3.29 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
{
"name": "contao/manager-bundle",
"description": "Provides the Contao Managed Edition",
"license": "LGPL-3.0-or-later",
"type": "symfony-bundle",
"authors": [
{
"name": "Leo Feyer",
"homepage": "https://github.com/leofeyer"
},
{
"name": "Contao Community",
"homepage": "https://contao.org/contributors"
}
],
"homepage": "https://contao.org",
"support": {
"issues": "https://github.com/contao/contao/issues",
"forum": "https://community.contao.org",
"source": "https://github.com/contao/manager-bundle",
"docs": "https://docs.contao.org"
},
"funding": [
{
"type": "other",
"url": "https://to.contao.org/donate"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"cmsig/seal-loupe-adapter": "^0.6",
"contao/core-bundle": "self.version",
"contao/manager-plugin": "^2.4",
"doctrine/dbal": "^3.6",
"doctrine/doctrine-bundle": "^2.8",
"friendsofsymfony/http-cache": "^3.0",
"friendsofsymfony/http-cache-bundle": "^3.0",
"nelmio/cors-bundle": "^2.0.1",
"nelmio/security-bundle": "^2.2 || ^3.0",
"symfony/cache": "^6.4 || ^7.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/debug-bundle": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/doctrine-bridge": "^6.4 || ^7.0",
"symfony/dotenv": "^6.4 || ^7.0",
"symfony/error-handler": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/mailer": "^6.4 || ^7.0",
"symfony/monolog-bridge": "^6.4 || ^7.0",
"symfony/monolog-bundle": "^3.1",
"symfony/process": "^6.4 || ^7.0",
"symfony/routing": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0",
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"symfony/web-profiler-bundle": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"toflar/psr6-symfony-http-cache-store": "^4.0",
"twig/extra-bundle": "^3.0"
},
"require-dev": {
"composer/composer": "^2.0",
"contao/test-case": "self.version",
"contao/news-bundle": "self.version",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"Contao\\ManagerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contao\\ManagerBundle\\Tests\\": "tests/"
}
},
"bin": [
"bin/contao-console",
"bin/contao-setup"
],
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-manager-plugin": "Contao\\ManagerBundle\\ContaoManager\\Plugin"
}
}