Skip to content

Commit

Permalink
fix: allow PHP Versions equal then minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
modelrailroader authored and thorsten committed Oct 21, 2023
1 parent bbe57a6 commit 47ccd11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpmyfaq/src/phpMyFAQ/Setup/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -1054,6 +1054,6 @@ public function startInstall(array $setup = null): void
*/
public function checkMinimumPhpVersion(): bool
{
return version_compare(PHP_VERSION, System::VERSION_MINIMUM_PHP) > 0;
return version_compare(PHP_VERSION, System::VERSION_MINIMUM_PHP) >= 0;
}
}

0 comments on commit 47ccd11

Please sign in to comment.