@@ -77,7 +77,8 @@ protected function configure(): void
7777 ->addOption ('teams ' , null , InputOption::VALUE_NONE , 'Indicates whether Jetstream should be scaffolded with team support ' )
7878 ->addOption ('verification ' , null , InputOption::VALUE_NONE , 'Indicates whether Jetstream should be scaffolded with email verification support ' )
7979
80- ->addOption ('custom-starter ' , null , InputOption::VALUE_REQUIRED , 'Custom Starter (Provide your own starter-kit) ' )
80+ ->addOption ('using ' , null , InputOption::VALUE_OPTIONAL , 'Install a custom starter kit from a community maintained package ' )
81+ ->addOption ('custom-starter ' , null , InputOption::VALUE_REQUIRED , 'Custom Starter (Provide your own starter-kit) same thing as --using ' , '' )
8182
8283 // from new installer
8384 ->addOption ('react ' , null , InputOption::VALUE_NONE , 'Install the React Starter Kit ' )
@@ -118,6 +119,10 @@ protected function interact(InputInterface $input, OutputInterface $output): voi
118119
119120 $ this ->ensureExtensionsAreAvailable ();
120121
122+ if ($ input ->getOption ('using ' )) {
123+ $ input ->setOption ('custom-starter ' , $ input ->getOption ('using ' ));
124+ }
125+
121126 if ($ this ->isCreatingTemplate ()) {
122127 if (!$ input ->getArgument ('template-name ' )) {
123128 $ input ->setArgument ('template-name ' , text (
0 commit comments