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

Increment minimum PHP version for 5.82 #31652

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions CRM/Upgrade/Incremental/General.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ class CRM_Upgrade_Incremental_General {
*
* A site running an earlier version will be told to upgrade.
*/
const MIN_RECOMMENDED_PHP_VER = '8.1.0';
const MIN_RECOMMENDED_PHP_VER = '8.2.0';

/**
* The minimum PHP version required to install Civi.
*/
const MIN_INSTALL_PHP_VER = '7.4.0';
const MIN_INSTALL_PHP_VER = '8.0.0';

/**
* The minimum recommended MySQL version.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"include-path": ["vendor/tecnickcom"],
"config": {
"platform": {
"php": "7.4.0"
"php": "8.0.0"
},
"allow-plugins": {
"civicrm/composer-compile-plugin": true,
Expand Down