From 96298d469113a0b69ff30ccde82b47d1ca24d006 Mon Sep 17 00:00:00 2001 From: Andrew Hunt Date: Wed, 5 Jun 2019 12:33:24 -0400 Subject: [PATCH] Minimum supported PHP version is 7.0 --- CRM/Upgrade/Form.php | 3 +++ CRM/Upgrade/Incremental/General.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CRM/Upgrade/Form.php b/CRM/Upgrade/Form.php index 483125451f..313484198f 100644 --- a/CRM/Upgrade/Form.php +++ b/CRM/Upgrade/Form.php @@ -49,6 +49,9 @@ class CRM_Upgrade_Form extends CRM_Core_Form { /** * Minimum php version required to run (equal to or lower than the minimum install version) + * + * Even though 5.6 is no longer supported, this value is left here for a while + * so as not to block stragglers from upgrading. */ const MINIMUM_PHP_VERSION = '5.6'; diff --git a/CRM/Upgrade/Incremental/General.php b/CRM/Upgrade/Incremental/General.php index b9179301f1..67763939ff 100644 --- a/CRM/Upgrade/Incremental/General.php +++ b/CRM/Upgrade/Incremental/General.php @@ -53,7 +53,7 @@ class CRM_Upgrade_Incremental_General { * * @see install/index.php */ - const MIN_INSTALL_PHP_VER = '5.6'; + const MIN_INSTALL_PHP_VER = '7.0'; /** * Compute any messages which should be displayed before upgrade. -- 2.25.1