From a114a2a0787e397edaef85d1d2ceb2ddb903d918 Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski Date: Sun, 4 Feb 2024 19:37:45 +0100 Subject: [PATCH] Add missing required extensions and bump minimum php version --- config/installer.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/config/installer.php b/config/installer.php index 012d3fa9..2f8b8add 100755 --- a/config/installer.php +++ b/config/installer.php @@ -13,7 +13,7 @@ return [ | */ 'core' => [ - 'minPhpVersion' => '7.4.0', + 'minPhpVersion' => '8.1.0', ], 'final' => [ 'key' => true, @@ -21,13 +21,16 @@ return [ ], 'requirements' => [ 'php' => [ - 'openssl', + 'exif', 'pdo', + 'bcmath', + 'openssl', 'mbstring', - 'tokenizer', - 'JSON', - 'cURL', + 'json', + 'xml', + 'fileinfo', 'zip', + 'curl', ], 'apache' => [ 'mod_rewrite',