From dd1bfa720be6f0b78834ffddc178de6c03a15451 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 6 Sep 2022 21:48:14 +0200 Subject: [PATCH] [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. --- composer.json | 8 ++++---- ext_emconf.php | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 01b7161..3df91b6 100644 --- a/composer.json +++ b/composer.json @@ -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" }, diff --git a/ext_emconf.php b/ext_emconf.php index a1ccd3d..e21e91c 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -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',