freebuu/authentik-forward-auth

Authentik forward auth package for Laravel

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:package

pkg:composer/freebuu/authentik-forward-auth

0.1.1 2026-02-18 16:18 UTC

This package is auto-updated.

Last update: 2026-02-18 21:41:56 UTC


README

Laravel guard + user provider for Authentik Forward Auth.

Install

composer require freebuu/authentik-forward-auth

Simple configuration

// 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...