Skip to content

Commit 5941259

Browse files
authored
Adjust minimum PHP version (#867)
1 parent 5349e47 commit 5941259

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Driver/AbstractInfo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ abstract protected function checkFeature($feature);
9292
*/
9393
public function checkVersionIsSupported()
9494
{
95-
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50500) {
96-
throw new NotSupportedException('Imagine requires PHP 5.5 or later');
95+
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 70100) {
96+
throw new NotSupportedException('Imagine requires PHP 7.1 or later');
9797
}
9898
}
9999

0 commit comments

Comments
 (0)