bdthemes / laravel-single-sign-on
Laravel wrapper around OAuth2 libraries.
v1.1.2
2022-12-07 06:49 UTC
Requires
- php: ^7.2|^8.0
- ext-json: *
- guzzlehttp/guzzle: ^6.0|^7.0
- illuminate/contracts: ^6.0|^7.0|^8.0|^9.0
- illuminate/http: ^6.0|^7.0|^8.0|^9.0
- illuminate/support: ^6.0|^7.0|^8.0|^9.0
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^4.0|^5.0|^6.0|^7.0
- phpunit/phpunit: ^8.0|^9.3
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
],