Skip to content

Commit

Permalink
Update minimum PHP requirements to 7.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Feb 3, 2021
1 parent 1e062d4 commit bf7a856
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@
|
*/

'min_php' => '7.1.3',
'min_php' => '7.2.5',


/*
Expand Down
2 changes: 1 addition & 1 deletion upgrade.php
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit bf7a856

Please sign in to comment.