From b74976339de93f9cc5604f03f4b0fb51ca55cdf0 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 31 Aug 2015 15:29:20 +0930 Subject: [PATCH] Require the PHP fileinfo extension It's required for the intervention/image package --- framework/core/src/Install/Actions/IndexAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Install/Actions/IndexAction.php b/framework/core/src/Install/Actions/IndexAction.php index c5ee8d993..812caab54 100644 --- a/framework/core/src/Install/Actions/IndexAction.php +++ b/framework/core/src/Install/Actions/IndexAction.php @@ -47,7 +47,7 @@ class IndexAction extends HtmlAction ]; } - foreach (['mbstring', 'pdo_mysql', 'openssl', 'json', 'gd', 'dom'] as $extension) { + foreach (['mbstring', 'pdo_mysql', 'openssl', 'json', 'gd', 'dom', 'fileinfo'] as $extension) { if (! extension_loaded($extension)) { $errors[] = [ 'message' => 'The '.$extension.' extension is required.'