diff --git a/src/Console/DevToolCommand.php b/src/Console/DevToolCommand.php index e83e62e..0af0e02 100644 --- a/src/Console/DevToolCommand.php +++ b/src/Console/DevToolCommand.php @@ -8,6 +8,8 @@ use Orchestra\Testbench\Foundation\Console\Actions\GeneratesFile; use Symfony\Component\Console\Attribute\AsCommand; +use function Laravel\Prompts\select; + #[AsCommand(name: 'workbench:devtool', description: 'Configure Workbench for package development')] class DevToolCommand extends Command { @@ -86,7 +88,7 @@ protected function copyTestbenchDotEnvFile(Filesystem $filesystem, string $worki return; } - $choice = $this->components->choice( + $choice = select( "Export '.env' file as?", $choices, );