-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
87 lines (87 loc) · 3.14 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
{
"name": "bartacus/bartacus-bundle",
"type": "symfony-bundle",
"description": "Integrates the Symfony full-stack framework into TYPO3",
"keywords": [ "typo3", "symfony", "framework", "integration", "container", "services", "service container", "twig" ],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Stefan Herndler"
},
{
"name": "Simon Kendler"
},
{
"name": "pixelart GmbH",
"homepage": "https://www.pixelart.at"
}
],
"require": {
"php": "^8.3",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-session": "*",
"ext-xml": "*",
"composer-runtime-api": "^2.1",
"cweagans/composer-patches": "^1.7",
"nyholm/psr7": "^1.8",
"psr/http-server-middleware": "^1.0",
"symfony/config": "^7.1",
"symfony/event-dispatcher": "^7.1",
"symfony/framework-bundle": "^7.1",
"symfony/http-foundation": "^7.1",
"symfony/http-kernel": "^7.1",
"symfony/options-resolver": "^7.1",
"symfony/proxy-manager-bridge": "^6.4",
"symfony/psr-http-message-bridge": "^7.1",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-frontend": "^13.4",
"typo3/cms-install": "^13.4"
},
"require-dev": {
"symfony/debug": "^4.4",
"symfony/twig-bundle": "^7.1"
},
"conflict": {
"jms/di-extra-bundle": "*"
},
"autoload": {
"psr-4": {
"Bartacus\\Bundle\\BartacusBundle\\": ""
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"branch-alias": {
"dev-master": "6.0.x-dev"
},
"patches": {
"typo3/cms-core": {
"Patch TYPO3 entry point for proper Symfony kernel bootstrap": "https://github.com/TYPO3/TYPO3.CMS/compare/v13.3.1...Bartacus:patch/13.3/core/bartacus-entry-script.patch",
"Patch TYPO3 GeneralUtility to enable Symfony ServiceBridge": "https://github.com/TYPO3/typo3/compare/v13.3.1...Bartacus:patch/13.3/core/service-bridge.patch"
},
"typo3/cms-install": {
"Patch TYPO3 entry point for proper Symfony kernel bootstrap": "https://github.com/TYPO3/TYPO3.CMS/compare/v13.3.1...Bartacus:patch/13.3/install/bartacus-entry-script.patch"
},
"typo3/cms-cli": {
"Patch entry point for proper Symfony kernel bootstrap": "https://github.com/TYPO3/cms-cli/compare/3.1.1...Bartacus:patch/3.0.0/bartacus-entry-script.patch"
},
"typo3/cms-extbase": {
"Patch Extbase manager for proper CLI usage": "https://github.com/TYPO3/TYPO3.CMS/compare/v13.3.1...Bartacus:patch/13.3/extbase/configuration-manager.patch"
}
},
"enable-patching": true
}
}