Skip to content

Commit

Permalink
[TASK] Require TYPO3 >= 11.5.37 (#692)
Browse files Browse the repository at this point in the history
Fixes #691
  • Loading branch information
oliverklee committed Sep 15, 2024
1 parent ff7585b commit d33fe9c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Added

### Changed
- Require TYPO3 >= 11.5.37 (#692)

### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
},
"require": {
"php": "^7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"typo3/cms-core": "^11.5.17 || ^12.4.2",
"typo3/cms-extbase": "^11.5.17 || ^12.4.2"
"typo3/cms-core": "^11.5.37 || ^12.4.2",
"typo3/cms-extbase": "^11.5.37 || ^12.4.2"
},
"require-dev": {
"ergebnis/composer-normalize": "2.43.0",
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
'constraints' => [
'depends' => [
'php' => '7.4.0-8.3.99',
'typo3' => '11.5.17-12.4.99',
'extbase' => '11.5.17-12.4.99',
'typo3' => '11.5.37-12.4.99',
'extbase' => '11.5.37-12.4.99',
],
'conflicts' => [
],
Expand Down
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
->withImportNames(true, true, false)
->withConfiguredRule(ExtEmConfRector::class, [
ExtEmConfRector::PHP_VERSION_CONSTRAINT => '7.4.0-8.3.99',
ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '11.5.17-12.4.99',
ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '11.5.37-12.4.99',
ExtEmConfRector::ADDITIONAL_VALUES_TO_BE_REMOVED => [],
])
->withSkip([
Expand Down

0 comments on commit d33fe9c

Please sign in to comment.