diff --git a/packages/audit/src/Commands/InstallCommand.php b/packages/audit/src/Commands/InstallCommand.php index 25696f12c..0c78ee17a 100644 --- a/packages/audit/src/Commands/InstallCommand.php +++ b/packages/audit/src/Commands/InstallCommand.php @@ -74,7 +74,7 @@ public function publishConfiguration(): void if (confirm('Do you wish to publish the configuration?', true)) { if (! File::exists('config/audit.php')) { info('Publishing Audit Configuration...'); - $this->call('vendor:publish', ['--tag' => 'audit-config']); + $this->callSilent('vendor:publish', ['--tag' => 'audit-config']); } else { warning('The Audit config already exist. The config will not be published.'); } @@ -97,7 +97,7 @@ public function runMigrations(): void { if (confirm('Do you wish to run the migrations?', true)) { info('Running Audit Migrations...'); - $this->call('migrate'); + $this->callSilent('migrate'); } } diff --git a/packages/builder/src/Commands/InstallCommand.php b/packages/builder/src/Commands/InstallCommand.php index 79065369e..b55cec97f 100644 --- a/packages/builder/src/Commands/InstallCommand.php +++ b/packages/builder/src/Commands/InstallCommand.php @@ -74,7 +74,7 @@ public function publishConfiguration(): void if (confirm('Do you wish to publish the configuration?', true)) { if (! File::exists('config/builder.php')) { info('Publishing Builder Configuration...'); - $this->call('vendor:publish', ['--tag' => 'builder-config']); + $this->callSilent('vendor:publish', ['--tag' => 'builder-config']); } else { warning('The Builder config already exist. The config will not be published.'); } @@ -97,7 +97,7 @@ public function runMigrations(): void { if (confirm('Do you wish to run the migrations?', true)) { info('Running Builder Migrations...'); - $this->call('migrate'); + $this->callSilent('migrate'); } } diff --git a/packages/core/src/Commands/InstallCommand.php b/packages/core/src/Commands/InstallCommand.php index 91274d92c..eea72aea0 100644 --- a/packages/core/src/Commands/InstallCommand.php +++ b/packages/core/src/Commands/InstallCommand.php @@ -66,7 +66,7 @@ public function publishConfiguration(): void if (confirm('Do you wish to publish the configuration?', true)) { if (! File::exists('config/core.php')) { info('Publishing Core Configuration...'); - $this->call('vendor:publish', ['--tag' => 'core-config']); + $this->callSilent('vendor:publish', ['--tag' => 'core-config']); } else { warning('The Core config already exist. The config will not be published.'); } @@ -82,7 +82,7 @@ public function checkForFilament(): void info(' '); if (confirm('Do you want to install Filament now?', true)) { info('Starting Filament installer...'); - $this->call('filament:install', ['--panels' => true]); + $this->callSilent('filament:install', ['--panels' => true]); } } diff --git a/packages/jobs/src/Commands/InstallCommand.php b/packages/jobs/src/Commands/InstallCommand.php index 2f64e2d36..d84aba020 100644 --- a/packages/jobs/src/Commands/InstallCommand.php +++ b/packages/jobs/src/Commands/InstallCommand.php @@ -75,7 +75,7 @@ public function checkForFilament(): void info(' '); if (confirm('Do you want to install Filament now?', true)) { info('Starting Filament installer...'); - $this->call('filament:install', ['--panels' => true]); + $this->callSilent('filament:install', ['--panels' => true]); } } @@ -163,7 +163,7 @@ public function runMigrations(): void { if (confirm('Do you wish to run the migrations?', true)) { info('Running Jobs Migrations...'); - $this->call('migrate'); + $this->callSilent('migrate'); } } diff --git a/packages/page/src/Commands/InstallCommand.php b/packages/page/src/Commands/InstallCommand.php index 32172a14b..e6914bd75 100644 --- a/packages/page/src/Commands/InstallCommand.php +++ b/packages/page/src/Commands/InstallCommand.php @@ -74,7 +74,7 @@ public function publishConfiguration(): void if (confirm('Do you wish to publish the configuration?', true)) { if (! File::exists('config/page.php')) { info('Publishing Page Configuration...'); - $this->call('vendor:publish', ['--tag' => 'page-config']); + $this->callSilent('vendor:publish', ['--tag' => 'page-config']); } else { warning('The Page config already exist. The config will not be published.'); } @@ -97,7 +97,7 @@ public function runMigrations(): void { if (confirm('Do you wish to run the migrations?', true)) { info('Running Page Migrations...'); - $this->call('migrate'); + $this->callSilent('migrate'); } } diff --git a/packages/press/src/Commands/InstallCommand.php b/packages/press/src/Commands/InstallCommand.php index a2f6c863d..67816637a 100644 --- a/packages/press/src/Commands/InstallCommand.php +++ b/packages/press/src/Commands/InstallCommand.php @@ -74,7 +74,7 @@ public function publishConfiguration(): void if (confirm('Do you wish to publish the configuration?', true)) { if (! File::exists('config/press.php')) { info('Publishing Press Configuration...'); - $this->call('vendor:publish', ['--tag' => 'press-config']); + $this->callSilent('vendor:publish', ['--tag' => 'press-config']); } else { warning('The Press config already exist. The config will not be published.'); } @@ -97,7 +97,7 @@ public function runMigrations(): void { if (confirm('Do you wish to run the migrations?', true)) { info('Running Press Migrations...'); - $this->call('migrate'); + $this->callSilent('migrate'); } } diff --git a/packages/sync/src/Commands/InstallCommand.php b/packages/sync/src/Commands/InstallCommand.php index 7af09ab92..be9993603 100644 --- a/packages/sync/src/Commands/InstallCommand.php +++ b/packages/sync/src/Commands/InstallCommand.php @@ -74,7 +74,7 @@ public function publishConfiguration(): void if (confirm('Do you wish to publish the configuration?', true)) { if (! File::exists('config/sync.php')) { info('Publishing Sync Configuration...'); - $this->call('vendor:publish', ['--tag' => 'sync-config']); + $this->callSilent('vendor:publish', ['--tag' => 'sync-config']); } else { warning('The Sync config already exist. The config will not be published.'); } @@ -97,7 +97,7 @@ public function runMigrations(): void { if (confirm('Do you wish to run the migrations?', true)) { info('Running Sync Migrations...'); - $this->call('migrate'); + $this->callSilent('migrate'); } } diff --git a/packages/user/src/Commands/InstallCommand.php b/packages/user/src/Commands/InstallCommand.php index 970a774af..634710126 100644 --- a/packages/user/src/Commands/InstallCommand.php +++ b/packages/user/src/Commands/InstallCommand.php @@ -99,7 +99,7 @@ public function runMigrations(): void { if (confirm('Do you wish to run the migrations?', true)) { info('Running User Migrations...'); - $this->call('migrate'); + $this->callSilent('migrate'); } }