mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[BUGFIX] Raise the minimal TYPO3 V12 version (#1212)

TYPO3 12.4.2 has some bug fixes for PHP 8.3 to avoid a class loading
issue.
This commit is contained in:
Oliver Klee 2024-04-03 16:38:42 +02:00 committed by GitHub
parent 33a014d549
commit 186bd32caf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 5 deletions

View file

@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Stop using the predefined GitHub Actions (#1211) - Stop using the predefined GitHub Actions (#1211)
### Fixed ### Fixed
- Raise the minimal TYPO3 V12 version (#1212)
## 3.1.0 ## 3.1.0

View file

@ -41,10 +41,10 @@
"require": { "require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"psr/http-message": "^1.0.1", "psr/http-message": "^1.0.1",
"typo3/cms-core": "^11.5.4 || ^12.4", "typo3/cms-core": "^11.5.4 || ^12.4.2",
"typo3/cms-extbase": "^11.5.4 || ^12.4", "typo3/cms-extbase": "^11.5.4 || ^12.4.2",
"typo3/cms-fluid": "^11.5.4 || ^12.4", "typo3/cms-fluid": "^11.5.4 || ^12.4.2",
"typo3/cms-frontend": "^11.5.4 || ^12.4" "typo3/cms-frontend": "^11.5.4 || ^12.4.2"
}, },
"require-dev": { "require-dev": {
"ergebnis/composer-normalize": "^2.42.0", "ergebnis/composer-normalize": "^2.42.0",
@ -65,7 +65,7 @@
"symfony/yaml": "^5.4 || ^6.4 || ^7.0", "symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"tomasvotruba/cognitive-complexity": "^0.2.3", "tomasvotruba/cognitive-complexity": "^0.2.3",
"tomasvotruba/type-coverage": "^0.2.5", "tomasvotruba/type-coverage": "^0.2.5",
"typo3/cms-fluid-styled-content": "^11.5.4 || ^12.4.0", "typo3/cms-fluid-styled-content": "^11.5.4 || ^12.4.2",
"typo3/coding-standards": "^0.6.1", "typo3/coding-standards": "^0.6.1",
"typo3/testing-framework": "^7.0.4", "typo3/testing-framework": "^7.0.4",
"webmozart/assert": "^1.11.0" "webmozart/assert": "^1.11.0"