Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Minimum Required PHP to be 5.6 #13309

Merged
merged 2 commits into from
Dec 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CRM/Upgrade/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class CRM_Upgrade_Form extends CRM_Core_Form {
/**
* Minimum php version required to run (equal to or lower than the minimum install version)
*/
const MINIMUM_PHP_VERSION = '5.5';
const MINIMUM_PHP_VERSION = '5.6';

protected $_config;

Expand Down
6 changes: 3 additions & 3 deletions CRM/Upgrade/Incremental/General.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ class CRM_Upgrade_Incremental_General {
/**
* The recommended PHP version.
*/
const RECOMMENDED_PHP_VER = '7.1';
const RECOMMENDED_PHP_VER = '7.2';

/**
* The previous recommended PHP version.
*/
const MIN_RECOMMENDED_PHP_VER = '7.0';
const MIN_RECOMMENDED_PHP_VER = '7.1';

/**
* The minimum PHP version required to install Civi.
*
* @see install/index.php
*/
const MIN_INSTALL_PHP_VER = '5.5';
const MIN_INSTALL_PHP_VER = '5.6';

/**
* Compute any messages which should be displayed before upgrade.
Expand Down