diff --git a/src/Commands/InstallCommand.php b/src/Commands/InstallCommand.php index 11782050..650a7a0e 100644 --- a/src/Commands/InstallCommand.php +++ b/src/Commands/InstallCommand.php @@ -43,7 +43,11 @@ public function handle(): void $shouldPromptForServe = ! $withoutInteraction && ! $this->option('force'); if ($shouldPromptForServe && confirm('Would you like to start the NativePHP development server', false)) { - $this->call('native:serve', ['--installer' => $installer]); + $this->call('native:serve', [ + '--installer' => $installer, + '--no-dependencies', + '--no-interaction' => $withoutInteraction + ]); } outro('NativePHP scaffolding installed successfully.');