digit-soft/laravel-token-auth

Laravel token auth cached.
3,840 3
Install
composer require digit-soft/laravel-token-auth
Latest Version:2.3.4
PHP:^8.1
License:MIT
Last Updated:Apr 8, 2026
Links: GitHub  ·  Packagist
Maintainer: digitv

Token auth for Laravel 7+

Component uses Redis to store token information

Install

composer require "digit-soft/laravel-token-auth:~1.0"

Publish config

php artisan vendor:publish --provider="DigitSoft\LaravelTokenAuth\AuthServiceProvider" --tag=config

Configure guard

Change driver to token-cached in config/auth.php

    'guards' => [
        ...
        'api' => [
            'driver' => 'token-cached',
            'provider' => 'users',
        ],
        ...
    ],

Ships with multiple middleware

  • DigitSoft\LaravelTokenAuth\Middleware\DefaultAuthGuard - set default auth guard to given value
  • DigitSoft\LaravelTokenAuth\Middleware\DefaultSessionDriver - set default session driver to given value
  • DigitSoft\LaravelTokenAuth\Middleware\AddGeneratedTokenToResponse - adds token generated during request to response header Some middleware useful for PHP-PM driven applications.

Sessions

There is possibility to save session data to token, if you will use package session handler DigitSoft\LaravelTokenAuth\Session\TokenSessionHandler, driver name is token-cached. You can also set it with DefaultSessionDriver middleware. Often rewritable data such as previous page, flashes and _token are not stored.

Events

There is DigitSoft\LaravelTokenAuth\Events\AccessTokenCreated, which fired every time token is created by TokenCached facade. So you can write or check information in AccessToken with own event listener.

Customization

  • You can use your own AccessToken implementation by extending original class and set its name in config.
  • You can set your own header name for AddGeneratedTokenToResponse middleware in config.

You can find more options and description in config file.

Related Packages

lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users...

20,619,309 2,340
sarav/laravel-multiauth

A Simple Laravel Package for handling multiple authentication

31,241 50
tymon/jwt-auth

JSON Web Token Authentication for Laravel and Lumen

54,298,365 11,494
phpzen/laravel-rbac

Role based access control for Laravel 5

3,232 38
kodeine/laravel-acl

Light-weight role-based permissions for Laravel 5 built in Auth system.

363,834 774