mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2025-01-07 05:06:09 +01:00
[TASK] Raise the minimum required bugfix version for TYPO3 (#1540)
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.
This commit is contained in:
parent
72983a82b5
commit
5260d3d939
3 changed files with 10 additions and 10 deletions
|
@ -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",
|
||||
|
@ -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"
|
||||
|
|
|
@ -8,10 +8,10 @@ $EM_CONF[$_EXTKEY] = [
|
|||
'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',
|
||||
|
|
|
@ -96,7 +96,7 @@ return RectorConfig::configure()
|
|||
->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([
|
||||
|
|
Loading…
Reference in a new issue