zefy / php-simple-sso
Simple PHP SSO
Installs: 7 743
Dependents: 22
Suggesters: 0
Security: 0
Stars: 21
Watchers: 4
Forks: 13
Open Issues: 0
Requires
- php: >=7.1.3
This package is not auto-updated.
Last update: 2024-10-31 05:13:46 UTC
README
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 examples in docs/examples directory and try to use it for your project. Also there is available Laravel package which is written based on this package.