From f5a263969aa2f6e9a6d8653a5179f761acbcc7b5 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Tue, 3 Dec 2024 15:29:17 +0100 Subject: [PATCH] Adjust minimum PHP version --- src/Driver/AbstractInfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Driver/AbstractInfo.php b/src/Driver/AbstractInfo.php index 5ea242ad8..21ec6ebb0 100644 --- a/src/Driver/AbstractInfo.php +++ b/src/Driver/AbstractInfo.php @@ -92,8 +92,8 @@ abstract protected function checkFeature($feature); */ public function checkVersionIsSupported() { - if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50500) { - throw new NotSupportedException('Imagine requires PHP 5.5 or later'); + if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 70100) { + throw new NotSupportedException('Imagine requires PHP 7.1 or later'); } }