From a2342d5421eece8e7e3b93bd02605660a662a43c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Uzna=C5=84ski?= Date: Wed, 22 Sep 2021 17:14:29 +0200 Subject: [PATCH] [TASK] Allow installation on TYPO3 V11 (#293) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Łukasz Uznański --- .github/workflows/ci.yml | 1 + composer.json | 10 +++++----- ext_emconf.php | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7423fe0..80bf030 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,7 @@ jobs: - 7.2 - 7.3 - 7.4 + - 8.0 code-quality: name: "Code quality checks" runs-on: ubuntu-20.04 diff --git a/composer.json b/composer.json index 22668b1..ae0a9c7 100644 --- a/composer.json +++ b/composer.json @@ -22,10 +22,10 @@ ], "require": { "php": "~7.2.0 || ~7.3.0 || ~7.4.0", - "typo3/cms-core": "^9.5 || ^10.4", - "typo3/cms-extbase": "^9.5 || ^10.4", - "typo3/cms-fluid": "^9.5 || ^10.4", - "typo3/cms-frontend": "^9.5 || ^10.4" + "typo3/cms-core": "^9.5 || ^10.4 || ^11.4", + "typo3/cms-extbase": "^9.5 || ^10.4 || ^11.4", + "typo3/cms-fluid": "^9.5 || ^10.4 || ^11.4", + "typo3/cms-frontend": "^9.5 || ^10.4 || ^11.4" }, "replace": { "typo3-ter/tea": "self.version" @@ -50,7 +50,7 @@ "seld/jsonlint": "^1.8.3", "squizlabs/php_codesniffer": "^3.6.0", "symfony/yaml": "^4.4.29 || ^5.3.6", - "typo3/cms-fluid-styled-content": "^9.5 || ^10.4" + "typo3/cms-fluid-styled-content": "^9.5 || ^10.4 || ^11.4" }, "config": { "preferred-install": { diff --git a/ext_emconf.php b/ext_emconf.php index 16db579..546c1e6 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -7,7 +7,7 @@ $EM_CONF[$_EXTKEY] = [ 'constraints' => [ 'depends' => [ 'php' => '7.2.0-7.4.99', - 'typo3' => '9.5.0-10.99.99', + 'typo3' => '9.5.0-11.4.99', ], ], 'state' => 'stable',