xdavidwu / laravel-oidc-auth
OpenID Connect authentication for Laravel
Installs: 13 974
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 6
Open Issues: 5
Requires
- laravel/framework: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
- steverhoades/oauth2-openid-connect-client: ^2.0
This package is auto-updated.
Last update: 2025-03-27 11:43:42 UTC
README
OpenID Connect authentication for Laravel
Save access token to session storage, and integrate with Laravel Auth
.
Based on steverhoades/oauth2-openid-connect-client.
Usage
Publish config with artisan command vender:publish
for provider LaravelOIDCAuth\OIDCAuthServiceProvider
, and fill it.
Use LaravelOIDCAuth\Authenticate
as auth middleware to redirect directly to OIDC login automatically.
config/auth.php
Set guard driver to oidc-auth-session
to remove tokens from session storage on logout.
Set provider driver to oidc-auth-session
to make Auth::user()
return a LaravelOIDCAuth\OIDCUser
authenticable from saved token.
Alternatively, you can implement a user factory (see LaravelOIDCAuth\UserFactoryInterface
) for things like creating user DB model and use provider driver like eloquent
.