5 // Display name, shown to users, for OpenId option
6 'name' => env('OIDC_NAME', 'SSO'),
8 // Dump user details after a login request for debugging purposes
9 'dump_user_details' => env('OIDC_DUMP_USER_DETAILS', false),
11 // Attribute, within a OpenId token, to find the user's display name
12 'display_name_claims' => explode('|', env('OIDC_DISPLAY_NAME_CLAIMS', 'name')),
14 // OAuth2/OpenId client id, as configured in your Authorization server.
15 'client_id' => env('OIDC_CLIENT_ID', null),
17 // OAuth2/OpenId client secret, as configured in your Authorization server.
18 'client_secret' => env('OIDC_CLIENT_SECRET', null),
20 // The issuer of the identity token (id_token) this will be compared with
21 // what is returned in the token.
22 'issuer' => env('OIDC_ISSUER', null),
24 // Auto-discover the relevant endpoints and keys from the issuer.
25 // Fetched details are cached for 15 minutes.
26 'discover' => env('OIDC_ISSUER_DISCOVER', false),
28 // Public key that's used to verify the JWT token with.
29 // Can be the key value itself or a local 'file://public.key' reference.
30 'jwt_public_key' => env('OIDC_PUBLIC_KEY', null),
33 'authorization_endpoint' => env('OIDC_AUTH_ENDPOINT', null),
34 'token_endpoint' => env('OIDC_TOKEN_ENDPOINT', null),