From 60b19efe0a436e04f867e00f70c4f2c8839ce0e9 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 --- src/Install/Console/InstallCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Install/Console/InstallCommand.php b/src/Install/Console/InstallCommand.php index 100f07a28..686991f10 100644 --- a/src/Install/Console/InstallCommand.php +++ b/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' ] );