archintel-dev / sso-idp
Identity Provider
v1.2.3
2019-09-09 13:55 UTC
This package is auto-updated.
Last update: 2024-11-08 20:47:53 UTC
README
Service provider
Installation
composer require archintel-dev/sso-idp
in your terminal run this command
php artisan vendor:publish
and publish the Provider: ArchintelDev\SSOIDPServiceProvider
or you can use this command
php artisan vendor:publish --provider="ArchintelDev\SSOIDPServiceProvider"
routes and config are added
config file is located in config folder with filename ssoidp.php
also add in the .env file
EM_HOST=
EM_APP_ID=
EM_CLIENT_SECRET=
EM_REDIRECT_URI=
Using logout: copy this in blade
<a href="/logout/sso" >Logout</a>
or
<a href="{{ route('sso.logout') }}" >Logout</a>