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'); } }