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

[TASK] Make the required system extension versions consistent (#558)

As it is not possible to install system extensions in different versions
(e.g., extbase 10.4.7 together with fluid 10.4.11), we should require
the same versios for all system extensions for consistency.
This commit is contained in:
Oliver Klee 2022-09-06 21:48:14 +02:00 committed by GitHub
parent e360b1ea5a
commit dd1bfa720b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -29,9 +29,9 @@
"require": {
"php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0",
"typo3/cms-core": "^10.4.11 || ^11.5.2",
"typo3/cms-extbase": "^10.4.6 || ^11.5.2",
"typo3/cms-fluid": "^10.4 || ^11.5.2",
"typo3/cms-frontend": "^10.4 || ^11.5.2"
"typo3/cms-extbase": "^10.4.11 || ^11.5.2",
"typo3/cms-fluid": "^10.4.11 || ^11.5.2",
"typo3/cms-frontend": "^10.4.11 || ^11.5.2"
},
"require-dev": {
"doctrine/dbal": "^2.13.8 || ^3.3.7",
@ -50,7 +50,7 @@
"seld/jsonlint": "^1.9.0",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/yaml": "^4.4.29 || ^5.3.6 || ^6.0",
"typo3/cms-fluid-styled-content": "^10.4 || ^11.5.2",
"typo3/cms-fluid-styled-content": "^10.4.11 || ^11.5.2",
"typo3/coding-standards": "^0.5.5",
"typo3/testing-framework": "^6.16.6"
},

View file

@ -8,10 +8,10 @@ $EM_CONF[$_EXTKEY] = [
'constraints' => [
'depends' => [
'php' => '7.2.0-8.1.99',
'typo3' => '10.4.0-11.5.99',
'extbase' => '10.4.6-11.5.99',
'fluid' => '10.4.0-11.5.99',
'frontend' => '10.4.0-11.5.99',
'typo3' => '10.4.11-11.5.99',
'extbase' => '10.4.11-11.5.99',
'fluid' => '10.4.11-11.5.99',
'frontend' => '10.4.11-11.5.99',
],
],
'state' => 'stable',