Skip to content

Commit

Permalink
Merge pull request #13309 from seamuslee001/min_php_version_bump
Browse files Browse the repository at this point in the history
Bump Minimum Required PHP to be 5.6
  • Loading branch information
seamuslee001 authored Dec 18, 2018
2 parents bdac1a2 + ea91bc3 commit aa4eead
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit aa4eead

Please sign in to comment.