From 1c5d60dcfde23e52040554a4f17d8667847fe3bb Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Sun, 23 Apr 2023 13:28:33 +0200 Subject: [PATCH] Add mysql to required extensions --- lib/Froxlor/Install/Install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Froxlor/Install/Install.php b/lib/Froxlor/Install/Install.php index ebf322cb..80944b3a 100644 --- a/lib/Froxlor/Install/Install.php +++ b/lib/Froxlor/Install/Install.php @@ -42,7 +42,7 @@ class Install public $phpVersion; public $formfield; public string $requiredVersion = '7.4.0'; - public array $requiredExtensions = ['session', 'ctype', 'xml', 'filter', 'posix', 'mbstring', 'curl', 'gmp', 'json', 'gd']; + public array $requiredExtensions = ['session', 'ctype', 'mysql', 'xml', 'filter', 'posix', 'mbstring', 'curl', 'gmp', 'json', 'gd']; public array $suggestedExtensions = ['bcmath', 'zip']; public array $suggestions = []; public array $criticals = [];