N°6973 Fix composer platform check

This commit is contained in:
Pierre Goiffon
2023-11-21 11:03:58 +01:00
parent 26beeb6a80
commit 33596249a1

View File

@@ -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();