We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5349e47 commit 5941259Copy full SHA for 5941259
src/Driver/AbstractInfo.php
@@ -92,8 +92,8 @@ abstract protected function checkFeature($feature);
92
*/
93
public function checkVersionIsSupported()
94
{
95
- if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50500) {
96
- 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');
97
}
98
99
0 commit comments