raditzfarhan / simple-jwt-auth
Just a simple jwt auth for Laravel and Lumen
Installs: 219
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Type:laravel-package
Requires
- firebase/php-jwt: ^5.2
This package is auto-updated.
Last update: 2025-07-17 21:18:46 UTC
README
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.