/home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src/Console
NameSizeModeActions
ClearCommand.php7620644editdlrm
InstallCommand.php24590644editdlrm
PruneCommand.php8620644editdlrm
PublishCommand.php8500644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src/Console/InstallCommand.php (2459B)
comment('Publishing Telescope Service Provider...'); $this->callSilent('vendor:publish', ['--tag' => 'telescope-provider']); $this->comment('Publishing Telescope Assets...'); $this->callSilent('vendor:publish', ['--tag' => 'telescope-assets']); $this->comment('Publishing Telescope Configuration...'); $this->callSilent('vendor:publish', ['--tag' => 'telescope-config']); $this->registerTelescopeServiceProvider(); $this->info('Telescope scaffolding installed successfully.'); } /** * Register the Telescope service provider in the application configuration file. * * @return void */ protected function registerTelescopeServiceProvider() { $namespace = Str::replaceLast('\\', '', $this->laravel->getNamespace()); $appConfig = file_get_contents(config_path('app.php')); if (Str::contains($appConfig, $namespace.'\\Providers\\TelescopeServiceProvider::class')) { return; } $lineEndingCount = [ "\r\n" => substr_count($appConfig, "\r\n"), "\r" => substr_count($appConfig, "\r"), "\n" => substr_count($appConfig, "\n"), ]; $eol = array_keys($lineEndingCount, max($lineEndingCount))[0]; file_put_contents(config_path('app.php'), str_replace( "{$namespace}\\Providers\RouteServiceProvider::class,".$eol, "{$namespace}\\Providers\RouteServiceProvider::class,".$eol." {$namespace}\Providers\TelescopeServiceProvider::class,".$eol, $appConfig )); file_put_contents(app_path('Providers/TelescopeServiceProvider.php'), str_replace( "namespace App\Providers;", "namespace {$namespace}\Providers;", file_get_contents(app_path('Providers/TelescopeServiceProvider.php')) )); } }