richardmichel / passport-cache-token
v1.0.2
2023-02-11 04:55 UTC
Requires
- php: ^7.3|^8.0
- laravel/framework: ^8.0.0|^9.0.0
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' => [], ], ];