From bf7a856fa6d3eaa1010aa39a3dbabeead690279c Mon Sep 17 00:00:00 2001 From: snipe <snipe@snipe.net> Date: Tue, 2 Feb 2021 21:05:37 -0800 Subject: [PATCH] Update minimum PHP requirements to 7.2.5 --- config/app.php | 2 +- upgrade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/app.php b/config/app.php index 9f1f03129..0d5997133 100755 --- a/config/app.php +++ b/config/app.php @@ -279,7 +279,7 @@ return [ | */ - 'min_php' => '7.1.3', + 'min_php' => '7.2.5', /* diff --git a/upgrade.php b/upgrade.php index 960edbe06..e5d00aea2 100644 --- a/upgrade.php +++ b/upgrade.php @@ -1,7 +1,7 @@ <?php (PHP_SAPI !== 'cli' || isset($_SERVER['HTTP_USER_AGENT'])) && die('Access denied.'); -$required_version = '7.2.0'; +$required_version = '7.2.5'; if ((strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') || (!function_exists('posix_getpwuid'))) { echo "Skipping user check as it is not supported on Windows or Posix is not installed on this server. \n"; -- GitLab