diff --git a/CHANGELOG.md b/CHANGELOG.md index d0636b6..b2efc9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * Composer update * Flysystem patch GHSA-9f46-5r25-5wfm +* Min supported PHP version is now 7.2.5 ## 7.5.1 - 2021-03-23 diff --git a/dist/index.php b/dist/index.php index 097220b..00851fe 100644 --- a/dist/index.php +++ b/dist/index.php @@ -9,8 +9,8 @@ * file that was distributed with this source code. */ -if (version_compare(PHP_VERSION, '7.2', '<')) { - echo 'Minimum requirement is PHP 7.2 You are using: '.PHP_VERSION."\n"; +if (version_compare(PHP_VERSION, '7.2.5', '<')) { + echo 'Minimum requirement is PHP 7.2.5 You are using: '.PHP_VERSION."\n"; die; } diff --git a/docs/install.md b/docs/install.md index 30c5da1..d5c25a3 100644 --- a/docs/install.md +++ b/docs/install.md @@ -3,7 +3,7 @@ currentMenu: install --- ## Minimum Requirements -- PHP 7.2+ (with php-zip extension) +- PHP 7.2.5+ (with php-zip extension) ## Download precompiled build