archintel-dev/sso-idp

Identity Provider

Installs: 19

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/archintel-dev/sso-idp

v1.2.3 2019-09-09 13:55 UTC

This package is auto-updated.

Last update: 2025-10-08 23:00:39 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>