publishes([ dirname(__DIR__) . '/../../../config/bitinflow-accounts-api.php' => config_path('bitinflow-accounts-api.php'), ], 'config'); } /** * Register the application services. * @return void */ public function register() { $this->mergeConfigFrom( dirname(__DIR__) . '/../../../config/bitinflow-accounts-api.php', 'bitinflow-accounts-api' ); $this->app->singleton(BitinflowAccounts::class, function () { return new BitinflowAccounts; }); } /** * Get the services provided by the provider. * @return array */ public function provides() { return [BitinflowAccounts::class]; } }