mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
[FEATURE] Allow installations with TYPO3 12LTS (#637)
* [FEATURE] Allow installations with TYPO3 12LTS Part of #519 * Update CHANGELOG.md Co-authored-by: Chris Müller <2566282+brotkrueml@users.noreply.github.com> Co-authored-by: Chris Müller <2566282+brotkrueml@users.noreply.github.com>
This commit is contained in:
parent
6b7101c1da
commit
639e414512
3 changed files with 10 additions and 9 deletions
|
@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
||||||
## x.y.z
|
## x.y.z
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
- Add support for TYPO3 v12 (#637)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Upgrade to the testing framework v7 (#629)
|
- Upgrade to the testing framework v7 (#629)
|
||||||
|
|
|
@ -29,10 +29,10 @@
|
||||||
"require": {
|
"require": {
|
||||||
"php": "~7.4.0 || ~8.0.0 || ~8.1.0",
|
"php": "~7.4.0 || ~8.0.0 || ~8.1.0",
|
||||||
"psr/http-message": "^1.0.1",
|
"psr/http-message": "^1.0.1",
|
||||||
"typo3/cms-core": "^11.5.2",
|
"typo3/cms-core": "^11.5.2 || ^12.0",
|
||||||
"typo3/cms-extbase": "^11.5.2",
|
"typo3/cms-extbase": "^11.5.2 || ^12.0",
|
||||||
"typo3/cms-fluid": "^11.5.2",
|
"typo3/cms-fluid": "^11.5.2 || ^12.0",
|
||||||
"typo3/cms-frontend": "^11.5.2"
|
"typo3/cms-frontend": "^11.5.2 || ^12.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"doctrine/dbal": "^2.13.8 || ^3.3.7",
|
"doctrine/dbal": "^2.13.8 || ^3.3.7",
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
"seld/jsonlint": "^1.9.0",
|
"seld/jsonlint": "^1.9.0",
|
||||||
"squizlabs/php_codesniffer": "^3.7.1",
|
"squizlabs/php_codesniffer": "^3.7.1",
|
||||||
"symfony/yaml": "^5.4 || ^6.1",
|
"symfony/yaml": "^5.4 || ^6.1",
|
||||||
"typo3/cms-fluid-styled-content": "^11.5.2",
|
"typo3/cms-fluid-styled-content": "^11.5.2 || ^12.0",
|
||||||
"typo3/coding-standards": "^0.5.5",
|
"typo3/coding-standards": "^0.5.5",
|
||||||
"typo3/testing-framework": "^7.0@dev"
|
"typo3/testing-framework": "^7.0@dev"
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,10 +8,10 @@ $EM_CONF[$_EXTKEY] = [
|
||||||
'constraints' => [
|
'constraints' => [
|
||||||
'depends' => [
|
'depends' => [
|
||||||
'php' => '7.4.0-8.1.99',
|
'php' => '7.4.0-8.1.99',
|
||||||
'typo3' => '11.5.2-11.5.99',
|
'typo3' => '11.5.2-12.4.99',
|
||||||
'extbase' => '11.5.2-11.5.99',
|
'extbase' => '11.5.2-12.4.99',
|
||||||
'fluid' => '11.5.2-11.5.99',
|
'fluid' => '11.5.2-12.4.99',
|
||||||
'frontend' => '11.5.2-11.5.99',
|
'frontend' => '11.5.2-12.4.99',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'state' => 'stable',
|
'state' => 'stable',
|
||||||
|
|
Loading…
Reference in a new issue