option('with')) { $services = $this->option('with') == 'none' ? [] : explode(',', $this->option('with')); } elseif ($this->option('no-interaction')) { $services = $this->defaultServices; } else { $services = $this->gatherServicesInteractively(); } if ($invalidServices = array_diff($services, $this->services)) { $this->components->error('Invalid services ['.implode(',', $invalidServices).'].'); return 1; } $this->buildDockerCompose($services); $this->replaceEnvVariables($services); $this->configurePhpUnit(); if ($this->option('devcontainer')) { $this->installDevContainer(); } $this->prepareInstallation($services); $this->output->writeln(''); $this->components->info('Sail scaffolding installed successfully. You may run your Docker containers using Sail\'s "up" command.'); $this->output->writeln('./vendor/bin/sail up'); if (in_array('mysql', $services) || in_array('mariadb', $services) || in_array('pgsql', $services)) { $this->components->warn('A database service was installed. Run "artisan migrate" to prepare your database:'); $this->output->writeln('./vendor/bin/sail artisan migrate'); } $this->output->writeln(''); } }