1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Mpociot\ApiDoc;
- use Illuminate\Support\ServiceProvider;
- use Mpociot\ApiDoc\Commands\RebuildDocumentation;
- use Mpociot\ApiDoc\Commands\GenerateDocumentation;
- class ApiDocGeneratorServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap the application events.
- *
- * @return void
- */
- public function boot()
- {
- $this->loadViewsFrom(__DIR__.'/../resources/views/', 'apidoc');
- $this->publishes([
- __DIR__.'/../resources/views' => app()->basePath().'/resources/views/vendor/apidoc',
- ], 'apidoc-views');
- $this->publishes([
- __DIR__.'/../config/apidoc.php' => app()->basePath().'/config/apidoc.php',
- ], 'apidoc-config');
- $this->mergeConfigFrom(__DIR__.'/../config/apidoc.php', 'apidoc');
- if ($this->app->runningInConsole()) {
- $this->commands([
- GenerateDocumentation::class,
- RebuildDocumentation::class,
- ]);
- }
- }
- /**
- * Register the API doc commands.
- *
- * @return void
- */
- public function register()
- {
- //
- }
- }
|