From 17965f2f6130220f206ca6e097f387f7c2631b6d Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 14 Sep 2015 14:39:18 +0930 Subject: [PATCH] Password is not necessarily required e.g. on my LAMP setup, I sometimes use a MySQL account without a password --- framework/core/src/Install/Console/InstallCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/core/src/Install/Console/InstallCommand.php b/framework/core/src/Install/Console/InstallCommand.php index 100f07a28..686991f10 100644 --- a/framework/core/src/Install/Console/InstallCommand.php +++ b/framework/core/src/Install/Console/InstallCommand.php @@ -139,7 +139,6 @@ class InstallCommand extends Command 'host' => 'required', 'database' => 'required|alpha_dash', 'username' => 'required|alpha_dash', - 'password' => 'required', 'prefix' => 'alpha_dash|max:10' ] );