From 33596249a18efa0bd2f7c6ea57d253a12c94c880 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Tue, 21 Nov 2023 11:03:58 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B06973=20Fix=20composer=20platform=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/composer/platform_check.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/composer/platform_check.php b/lib/composer/platform_check.php index 2e6a23f9c..dee74e173 100644 --- a/lib/composer/platform_check.php +++ b/lib/composer/platform_check.php @@ -4,8 +4,8 @@ $issues = array(); -if (!(PHP_VERSION_ID >= 70400)) { - $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.'; +if (!(PHP_VERSION_ID >= 80100)) { + $issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.'; } $missingExtensions = array();