We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4951657 commit 6883d1eCopy full SHA for 6883d1e
src/Commands/InitCommand.php
@@ -140,8 +140,11 @@ public function handle(): void
140
}
141
142
if (!class_exists(\Laravel\Telescope\TelescopeServiceProvider::class)) {
143
- $this->shellCommands[] = 'composer require ronasit/laravel-telescope-extension';
144
- $this->shellCommands[] = 'php artisan telescope:install';
+ array_push(
+ $this->shellCommands,
145
+ 'composer require ronasit/laravel-telescope-extension',
146
+ 'php artisan telescope:install'
147
+ );
148
149
150
if ($this->confirm('Do you want to install media package?')) {
0 commit comments