richardmichel/passport-cache-token

v1.0.2 2023-02-11 04:55 UTC

This package is auto-updated.

Last update: 2025-03-11 09:12:41 UTC


README

Make laravel/passport token cacheable.

Installing

$ composer require richardmichel/passport-cache-token -vvv

Usage

Thanks to Laravel's automatic package discovery mechanism, you don't need to do any additional operations.

Of course, you can also control the cache strategy freely, just need to configure the following in the configuration file:

config/passport.php

return [
    //...
    'cache' => [
        // Cache key prefix
        'prefix' => 'passport_',
        
        // The lifetime of token cache,
        // Unit: second
        'expires_in' => 300,
        
        // Cache tags
        'tags' => [],
    ],
];