app->make('Laravel\Socialite\Contracts\Factory'); $socialite->extend( 'eveonline', function ($app) use ($socialite) { $config = $app['config']['services.eveonline']; return $socialite->buildProvider(EveOnlineOAuthProvider::class, $config); } ); } /** * Register any application services * * @return void */ public function register() { $this->mergeConfigFrom(__DIR__ . '/../../config/services.php', 'services'); } } ?>