Minimum version is actually PHP 7.2.5 because of dependencies

This commit is contained in:
Kijin Sung 2022-12-26 00:51:28 +09:00
parent a667228f29
commit 735d3dd97c
2 changed files with 3 additions and 3 deletions

View file

@ -11,10 +11,10 @@ if (defined('RX_VERSION'))
/**
* Check PHP version.
*/
if (version_compare(PHP_VERSION, '7.2', '<'))
if (version_compare(PHP_VERSION, '7.2.5', '<'))
{
header('HTTP/1.1 500 Internal Server Error');
echo 'Rhymix requires PHP 7.2 or higher.';
echo 'Rhymix requires PHP 7.2.5 or higher.';
exit(1);
}