Download the PHP package godfreymakori/php-simple-sso without Composer
On this page you can find all versions of the php package godfreymakori/php-simple-sso. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download godfreymakori/php-simple-sso
More information about godfreymakori/php-simple-sso
Files in godfreymakori/php-simple-sso
Informations about the package php-simple-sso
PHP Simple SSO skeleton
Words meanings
- SSO - Single Sign-On.
- Server - page which works as SSO server, handles authentications, stores all sessions data.
- Broker - your page which is used visited by clients/users.
- Client/User - your every visitor.
How it works?
Client visits Broker and unique token is generated. When new token is generated we need to attach Client session to his session in Broker so he will be redirected to Server and back to Broker at this moment new session in Server will be created and associated with Client session in Broker's page. When Client visits other Broker same steps will be done except that when Client will be redirected to Server he already use his old session and same session id which associated with Broker#1.
Usage
This is only a skeleton package so you need to write a little bit extra code to get it working.
You can see Laravel package which is written based on this package.