Make MySQL port field optional

Last fix for pull request #989.
This commit is contained in:
Franz Liedke 2017-02-03 17:56:02 +01:00
parent b8544c120d
commit 76a439ca37

View File

@ -135,7 +135,7 @@ class InstallCommand extends AbstractCommand
'database' => 'required|string',
'username' => 'required|string',
'prefix' => 'alpha_dash|max:10',
'port' => 'required|integer|min:1|max:65535',
'port' => 'integer|min:1|max:65535',
]
);