bdthemes/laravel-single-sign-on

Laravel wrapper around OAuth2 libraries.

v1.1.2 2022-12-07 06:49 UTC

This package is not auto-updated.

Last update: 2025-06-10 19:48:58 UTC


README

Install Package

composer require bdthemes/laravel-single-sign-on

Published migrations

php artisan vendor:publish --provider="BdThemes\SingleSignOn\SingleSignOnServiceProvider"

In the services config

'bdthemes' => [
    'client_id'         => env('BDTHEMES_CLIENT_ID'),
    'client_secret'     => env('BDTHEMES_CLIENT_SECRET'),
    'redirect'          => env('BDTHEMES_REDIRECT_URI'),
    'api_url'           => env('BDTHEMES_SSO_API_URL'), //optional
],