From 41019597d0632b98505811a16d9ef1707fa81a57 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Fri, 28 Aug 2015 05:30:27 +0930 Subject: [PATCH] Require the PHP DOM extension --- src/Install/Actions/IndexAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Install/Actions/IndexAction.php b/src/Install/Actions/IndexAction.php index 2812a2978..9ba012a75 100644 --- a/src/Install/Actions/IndexAction.php +++ b/src/Install/Actions/IndexAction.php @@ -49,7 +49,7 @@ class IndexAction extends HtmlAction ]; } - foreach (['mbstring', 'pdo_mysql', 'json', 'gd'] as $extension) { + foreach (['mbstring', 'pdo_mysql', 'json', 'gd', 'dom'] as $extension) { if (! extension_loaded($extension)) { $errors[] = [ 'message' => 'The '.$extension.' extension is required.'