Skip to content

Commit b382a1c

Browse files
committed
[TASK] Allow v13
1 parent 0b79a78 commit b382a1c

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
php: ['8.2', '8.3', '8.4']
13+
typo3: ['^13.4.20', '^14.3']
1314
composerInstall: ['composerInstallLowest', 'composerInstallHighest']
15+
exclude:
16+
- typo3: '^13.4.20'
17+
php: '8.4'
1418
steps:
1519
- name: Checkout
1620
uses: actions/checkout@v4
@@ -22,6 +26,9 @@ jobs:
2226
extensions: intl, mbstring
2327
coverage: none
2428

29+
- name: Pin TYPO3 version
30+
run: composer require --no-update "typo3/cms-core:${{ matrix.typo3 }}" "typo3/cms-redirects:${{ matrix.typo3 }}"
31+
2532
- name: Composer install (highest)
2633
if: matrix.composerInstall == 'composerInstallHighest'
2734
run: composer update --no-progress --no-interaction --ansi

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
"GPL-2.0-or-later"
2323
],
2424
"require": {
25-
"typo3/cms-core": "^14.3",
26-
"typo3/cms-redirects": "^14.3"
25+
"typo3/cms-core": "^13.4.20 || ^14.3",
26+
"typo3/cms-redirects": "^13.4.20 || ^14.3"
2727
},
2828
"require-dev": {
29-
"typo3/testing-framework": "^8.3"
29+
"typo3/testing-framework": "^8.3 || ^9.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

ext_emconf.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
'constraints' =>
1313
[
1414
'depends' => [
15-
'typo3' => '14.3.3-14.3.99',
16-
'redirects' => '14.3.0-14.3.99',
15+
'typo3' => '13.4.20-14.3.99',
16+
'redirects' => '13.4.20-14.3.99',
1717
],
1818
'conflicts' => [],
1919
'suggests' => [],

0 commit comments

Comments
 (0)