Skip to content

Commit 0611578

Browse files
authored
Merge pull request #25 from JAK0TA/add-support-for-typo3-v12
[TASK] Add support for typo3 v12
2 parents a81eb2b + a005807 commit 0611578

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,6 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
php-version:
30-
- 8.0
30+
- 8.0
31+
- 8.1
32+
- 8.2

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"license": "GPL-3.0-or-later",
66
"require": {
77
"php": "^8.0",
8-
"typo3/cms-core": "^11.4",
8+
"typo3/cms-core": "^11.4 || ^12.4",
99
"b13/container": "1.6.* || 2.0.* || 2.1.* || 2.2.*",
10-
"friendsoftypo3/headless": "^3.0"
10+
"friendsoftypo3/headless": "^3.0 || ^4.0"
1111
},
1212
"require-dev": {
1313
"roave/security-advisories": "dev-latest",

ext_emconf.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'version' => '1.0.0-beta',
1010
'constraints' => [
1111
'depends' => [
12-
'typo3' => '11.5.0-11.5.99',
12+
'typo3' => '11.5.0-12.99.9',
1313
'container' => '3.0.4-3.99.99',
1414
'headless' => '1.6.0-1.99.99',
1515
]

0 commit comments

Comments
 (0)