-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.81 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
{
"name": "bartacus/platformsh-bundle",
"type": "typo3-cms-extension",
"description": "Support bundle for using Platform.sh together with Bartacus and TYPO3",
"keywords": [ "typo3", "symfony", "framework", "integration", "platform.sh" ],
"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",
"composer-runtime-api": "^2.1",
"cweagans/composer-patches": "^1.7",
"platformsh/config-reader": "^2.4",
"spatie/url": "^2.4",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/http-kernel": "^7.1",
"symfony/yaml": "^7.1",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-install": "^13.4",
"webmozart/assert": "^1.11"
},
"autoload": {
"psr-4": {
"Bartacus\\Bundle\\PlatformshBundle\\": ""
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"cweagans/composer-patches": true
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
},
"patches": {
"typo3/cms-install": {
"Resolve writeable symlinks to ENABLE_INSTALL_TOOL and FIRST_INSTALL file": "https://github.com/TYPO3/TYPO3.CMS/compare/v10.4.1...Bartacus:patch/10.4/install/platformsh-enablefile.patch"
}
},
"typo3/cms": {
"extension-key": "bartacus_platformsh"
}
}
}