From 52cf465a9089a2aa91eada6292bcc222331b67eb Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Sun, 27 Dec 2015 17:31:42 +0100 Subject: [PATCH] Installer: Loosen restrictions on MySQL connection details Closes #602. --- framework/core/src/Install/Console/InstallCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/core/src/Install/Console/InstallCommand.php b/framework/core/src/Install/Console/InstallCommand.php index 7b750a68c..e71ae15be 100644 --- a/framework/core/src/Install/Console/InstallCommand.php +++ b/framework/core/src/Install/Console/InstallCommand.php @@ -120,8 +120,8 @@ class InstallCommand extends AbstractCommand [ 'driver' => 'required|in:mysql', 'host' => 'required', - 'database' => 'required|alpha_dash', - 'username' => 'required|alpha_dash', + 'database' => 'required|string', + 'username' => 'required|string', 'prefix' => 'alpha_dash|max:10' ] );