Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
Core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
917
Issues
917
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Development
Core
Commits
0b46460b
Unverified
Commit
0b46460b
authored
Jun 05, 2019
by
totten
Committed by
GitHub
Jun 05, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14437 from agh1/no-php-56
Minimum supported PHP version is 7.0
parents
dae1413d
96298d46
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
CRM/Upgrade/Form.php
CRM/Upgrade/Form.php
+3
-0
CRM/Upgrade/Incremental/General.php
CRM/Upgrade/Incremental/General.php
+1
-1
No files found.
CRM/Upgrade/Form.php
View file @
0b46460b
...
...
@@ -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'
;
...
...
CRM/Upgrade/Incremental/General.php
View file @
0b46460b
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment