diff --git a/src/NewCommand.php b/src/NewCommand.php index df7ebbe..5c8428d 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -248,6 +248,8 @@ protected function execute(InputInterface $input, OutputInterface $output): int if ($this->isParked($directory)) { $url = $this->generateAppUrl($name); $output->writeln('➜ Open: '.$url.''); + } elseif (windows_os()) { + $output->writeln('php artisan serve'); } else { $output->writeln('composer run dev'); }