Skip to content

Commit

Permalink
feat: update php max version supported
Browse files Browse the repository at this point in the history
  • Loading branch information
mastudillot committed Apr 22, 2024
1 parent 3a79303 commit 2bfa5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/HealthCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function __construct($config)
*/
private function getValidatePHP()
{
if (version_compare(phpversion(), '7.2.1', '<=') && version_compare(phpversion(), '5.5.0', '>=')) {
if (version_compare(phpversion(), '7.4.33', '<=') && version_compare(phpversion(), '5.5.0', '>=')) {
$this->versionInfo = [
'status' => 'OK',
'version' => phpversion(),
Expand Down

0 comments on commit 2bfa5c0

Please sign in to comment.