Minimum PHP 5.6 is now required

This commit is contained in:
slawkens 2021-02-16 00:30:56 +01:00
parent dbc76abcdd
commit 9ff032740c
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ Official website: https://my-aac.org
### REQUIREMENTS ### REQUIREMENTS
- PHP 5.5 or later - PHP 5.6 or later
- MySQL database - MySQL database
- PDO PHP Extension - PDO PHP Extension
- XML PHP Extension - XML PHP Extension

View File

@ -23,7 +23,7 @@
* @copyright 2019 MyAAC * @copyright 2019 MyAAC
* @link https://my-aac.org * @link https://my-aac.org
*/ */
if (version_compare(phpversion(), '5.5', '<')) die('PHP version 5.5 or higher is required.'); if (version_compare(phpversion(), '5.6', '<')) die('PHP version 5.6 or higher is required.');
session_start(); session_start();
define('MYAAC', true); define('MYAAC', true);