You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* List possible values for database driver
Nobody has to guess anymore what the possible values are for the
--database option.
* Update NewCommand.php
---------
Co-authored-by: Taylor Otwell <[email protected]>
->addOption('branch', null, InputOption::VALUE_REQUIRED, 'The branch that should be created for a new repository', $this->defaultBranch())
50
52
->addOption('github', null, InputOption::VALUE_OPTIONAL, 'Create a new repository on GitHub', false)
51
53
->addOption('organization', null, InputOption::VALUE_REQUIRED, 'The GitHub organization to create the new repository for')
52
-
->addOption('database', null, InputOption::VALUE_REQUIRED, 'The database driver your application will use')
54
+
->addOption('database', null, InputOption::VALUE_REQUIRED, 'The database driver your application will use. Possible values are: '.implode(', ', self::DATABASE_DRIVERS))
53
55
->addOption('react', null, InputOption::VALUE_NONE, 'Install the React Starter Kit')
54
56
->addOption('vue', null, InputOption::VALUE_NONE, 'Install the Vue Starter Kit')
55
57
->addOption('livewire', null, InputOption::VALUE_NONE, 'Install the Livewire Starter Kit')
@@ -561,8 +563,8 @@ protected function databaseOptions(): array
0 commit comments