From 5941259a71990e04e382d969bb56b7fd13108fce Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Tue, 3 Dec 2024 15:32:55 +0100 Subject: [PATCH] Adjust minimum PHP version (#867) --- 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 5ea242ad..21ec6ebb 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'); } }