raditzfarhan / simple-jwt-auth by raditzfarhan

Just a simple jwt auth for Laravel and Lumen
218
1
1
Package Data
Maintainer Username: raditzfarhan
Maintainer Contact: raditzfarhan@gmail.com (Raditz Farhan)
Package Create Date: 2020-04-14
Package Last Update: 2023-02-17
Language: PHP
License: MIT
Last Refreshed: 2024-11-15 15:21:31
Package Statistics
Total Downloads: 218
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 0
Total Open Issues: 1

Simple JWT Auth

Just a simple implementation of JWT Auth for Lumen

Configuration

Edit the bootstrap/app.php file and add the following line to register the service provider:

...
$app->register(RaditzFarhan\SimpleJWTAuth\JWTAuthServiceProvider::class);
...

Then add jwt to your guards config in auth.php config file:

'guards' => [
    ...    
    'jwt' => [
        'driver' => 'simple-jwt-auth',
        'provider' => 'users',
    ],
],

Then add users provider if you haven't:

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\User::class,
    ],
],

Credits

License

MIT. Please see the license file for more information.