Skip to content

Commit

Permalink
Adjust minimum PHP version (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati authored Dec 3, 2024
1 parent 5349e47 commit 5941259
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Driver/AbstractInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

Expand Down

0 comments on commit 5941259

Please sign in to comment.