Compare commits

...

2 Commits

Author SHA1 Message Date
tracer e3a9fb1454 Lowered required version to php 8.0 2022-08-30 14:16:33 +02:00
tracer b99438c925 Lowered required version to php 8.0 2022-08-30 14:16:25 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class UpdateController
exit(1);
}
if (PHP_VERSION_ID < 80100) {
if (PHP_VERSION_ID < 80000) {
echo 'You need at least php version 8.1.0';
exit(1);
}

View File

@ -1,4 +1,4 @@
#!/usr/bin/keyhelp-php81 -d apc.enable_cli=1
#!/usr/bin/env php
<?php
use App\UpdateController;