app->singleton( 'ciphersweet', CipherSweetService::class, ); // Commands $this->commands(KeyGenerate::class); } /** * Bootstrap services. * * @return void * @throws \Exception */ public function boot() { // Config $this->publishes([ __DIR__ . '/../config/ciphersweet.php', ], 'ciphersweet-config'); $this->mergeConfigFrom( __DIR__ . '/../config/ciphersweet.php', 'ciphersweet-config' ); // Blueprint macros Blueprint::mixin(new Macros\Blueprint()); } }