loadViewsFrom(__DIR__ . '/../resources/views/', 'scribe'); $this->publishes([ __DIR__ . '/../resources/views' => $this->app->basePath('resources/views/vendor/scribe'), ], 'scribe-views'); $this->publishes([ __DIR__ . '/../config/scribe.php' => $this->app->configPath('scribe.php'), ], 'scribe-config'); $this->mergeConfigFrom(__DIR__ . '/../config/scribe.php', 'scribe'); $this->bootRoutes(); if ($this->app->runningInConsole()) { $this->commands([ GenerateDocumentation::class, MakeStrategy::class, ]); } // Bind the route matcher implementation $this->app->bind(RouteMatcherInterface::class, config('scribe.routeMatcher', RouteMatcher::class)); if (!class_exists('Str')) { // Lumen may not have the aliases set up, and we don't want to have to use the FQN in our blade files. class_alias(\Illuminate\Support\Str::class, 'Str'); } } /** * Add docs routes for users that want their docs to pass through their Laravel app. */ protected function bootRoutes() { if ( config('scribe.type', 'static') === 'laravel' && config('scribe.laravel.add_routes', false) ) { $this->loadRoutesFrom( __DIR__ . '/../routes/laravel.php' ); } } }