Skip to content

Commit

Permalink
Replace php artisan serve with composer run dev (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
1weiho authored Oct 18, 2024
1 parent e9ed98a commit 7c0eeba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$url = $this->generateAppUrl($name);
$output->writeln('<fg=gray>➜</> Open: <options=bold;href='.$url.'>'.$url.'</>');
} else {
$output->writeln('<fg=gray>➜</> <options=bold>php artisan serve</>');
$output->writeln('<fg=gray>➜</> <options=bold>composer run dev</>');
}

$output->writeln('');
Expand Down

0 comments on commit 7c0eeba

Please sign in to comment.