cyrex/sso

dev-master 2022-07-14 19:12 UTC

This package is auto-updated.

Last update: 2024-03-29 04:12:26 UTC


README

The package for my SSO application that is under development.

Installation

  1. Run composer require cyrex/sso.
  2. Add to the providers in auth.php the following:
    'sso' => [
        'driver' => 'sso',
    ],
  1. Add to the guards in auth.php the following:
    'sso' => [
        'driver' => 'sso',
        'provider' => 'sso'
    ],
  1. Change the defaults.guard section of auth.php to sso.

  2. Add the following variables to your environment file.

AUTHORIZATION_SERVER_CLIENT_ID=
AUTHORIZATION_SERVER_CLIENT_SECRET=""
AUTHORIZATION_SERVER_URL=""