From 94c0158888189600a1623dba13612d3a3e7af7ec Mon Sep 17 00:00:00 2001 From: Andreas Wolf Date: Sat, 7 Dec 2019 12:29:45 +0100 Subject: [PATCH] [TASK] Add PHP 7.4 in composer.json and ext_emconf.php (#25) --- CHANGELOG.md | 2 +- composer.json | 2 +- ext_emconf.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c5db32..be11875 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Composer script for PHP code sniffer fixing (#21) - Run the functional tests in parallel - Add PHP-CS-Fixer -- Add support for PHP 7.3 +- Add support for PHP 7.3 and 7.4 - Add support for TYPO3 9.6 - Add PHP_CodeSniffer to the Travis CI build - Auto-release to the TER diff --git a/composer.json b/composer.json index cf5dd89..a6312f4 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "source": "https://github.com/typo3-trainer-network/tea" }, "require": { - "php": "~7.2 || ~7.3", + "php": "~7.2 || ~7.3 || ~7.4", "typo3/cms-core": "^9.5.4", "typo3/cms-extbase": "^9.5", "typo3/cms-fluid": "^9.5", diff --git a/ext_emconf.php b/ext_emconf.php index 53be2f6..5894095 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -6,7 +6,7 @@ $EM_CONF[$_EXTKEY] = [ 'category' => 'example', 'constraints' => [ 'depends' => [ - 'php' => '7.2.0-7.3.99', + 'php' => '7.2.0-7.4.99', 'typo3' => '9.5.0-9.5.99', ], ],