Skip to content

Commit fffd6cb

Browse files
committed
PHP 8.0 is now the minimum required PHP version
1 parent 71dc891 commit fffd6cb

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

backend/index.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
* @author Azuriom
1010
*/
1111

12-
$installerVersion = '0.3.0';
12+
$installerVersion = '0.4.0';
1313

14-
$minPhpVersion = '7.3';
14+
$minPhpVersion = '8.0';
1515

1616
$requiredExtensions = [
1717
'bcmath', 'ctype', 'json', 'mbstring', 'openssl', 'PDO', 'tokenizer', 'xml', 'xmlwriter', 'curl', 'fileinfo', 'zip',
@@ -233,6 +233,11 @@ function has_function($function)
233233
}
234234
}
235235

236+
if (array_get($_GET, 'phpinfo') === '') {
237+
phpinfo();
238+
exit();
239+
}
240+
236241
//
237242
// Give the requested data if the request is from AJAX.
238243
//

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azuriom-installer",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",

0 commit comments

Comments
 (0)