Skip to content

Commit

Permalink
[TASK] Raise the minimum require bugfix version for TYPO3
Browse files Browse the repository at this point in the history
This paves the way towards support for PHP 8.4.

Also, the newer version fixes a bug that affects functional tests
for the single view in #1419.
  • Loading branch information
oliverklee committed Jan 3, 2025
1 parent 72983a8 commit 48874f1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"psr/http-message": "^1.0.1",
"typo3/cms-core": "^11.5.4 || ^12.4.2",
"typo3/cms-extbase": "^11.5.4 || ^12.4.2",
"typo3/cms-fluid": "^11.5.4 || ^12.4.2",
"typo3/cms-frontend": "^11.5.4 || ^12.4.2"
"typo3/cms-core": "^11.5.41 || ^12.4.24",
"typo3/cms-extbase": "^11.5.41 || ^12.4.24",
"typo3/cms-fluid": "^11.5.41 || ^12.4.24",
"typo3/cms-frontend": "^11.5.41 || ^12.4.24"
},
"require-dev": {
"ergebnis/composer-normalize": "2.45.0",
Expand All @@ -69,7 +69,7 @@
"symfony/yaml": "5.4.45 || 6.4.13 || 7.2.0",
"tomasvotruba/cognitive-complexity": "0.2.3",
"tomasvotruba/type-coverage": "1.0.0",
"typo3/cms-fluid-styled-content": "^11.5.4 || ^12.4.2",
"typo3/cms-fluid-styled-content": "^11.5.41 || ^12.4.24",
"typo3/coding-standards": "0.6.1 || 0.8.0",
"typo3/testing-framework": "7.1.1",
"webmozart/assert": "^1.11.0"
Expand Down
8 changes: 4 additions & 4 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
'constraints' => [
'depends' => [
'php' => '7.4.0-8.3.99',
'typo3' => '11.5.4-12.4.99',
'extbase' => '11.5.4-12.4.99',
'fluid' => '11.5.4-12.4.99',
'frontend' => '11.5.4-12.4.99',
'typo3' => '11.5.41-12.4.99',
'extbase' => '11.5.41-12.4.99',
'fluid' => '11.5.41-12.4.99',
'frontend' => '11.5.41-12.4.99',
],
],
'state' => 'stable',
Expand Down
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
->withImportNames(true, true, false)
->withConfiguredRule(ExtEmConfRector::class, [
ExtEmConfRector::PHP_VERSION_CONSTRAINT => '7.4.0-8.3.99',
ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '11.5.4-12.4.99',
ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '11.5.41-12.4.99',
ExtEmConfRector::ADDITIONAL_VALUES_TO_BE_REMOVED => [],
])
->withSkip([
Expand Down

0 comments on commit 48874f1

Please sign in to comment.