freebuu/authentik-forward-auth
最新稳定版本:0.1.1
Composer 安装命令:
composer require freebuu/authentik-forward-auth
包简介
Authentik forward auth package for Laravel
README 文档
README
Laravel guard + user provider for Authentik Forward Auth.
Install
composer require freebuu/authentik-forward-auth
Simple configuration
- Read article for Authentik configuration.
- Add a guard + provider to
config/auth.php:
// config/auth.php 'guards' => [ //...other guards 'authentik' => [ 'driver' => 'authentik', 'provider' => 'authentik_generic', ], ], 'providers' => [ //...other providers... 'authentik_generic' => [ 'driver' => 'eloquent_authentik', ], ],
All done, you can now use the guard as auth:authentik in middlewre.
With this configuration you receive AuthentikUser from auth('authentik')->user()
Eloquent
To be continued...
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-18