Looking to hire Laravel developers? Try LaraJobs

laravel-jwt-auth maintained by jiaxincui

Description
JWT auth package for laravel
Author
Last update
2024/10/17 14:01 (dev-master)
License
Links
Downloads
17
Tags

Comments
comments powered by Disqus

RSA JWT auth package for laravel

Install

composer install

composer require jiaxincui/laravel-jwt-auth

In your config/app.php add Jiaxincui\JWTAuth\JWTAuthServiceProvider::class to the end of the providers array:

'providers' => [
    ...
    Jiaxincui\JWTAuth\JWTAuthServiceProvider::class,
],

Publish Configuration

php artisan vendor:publish --provider "Jiaxincui\JWTAuth\JWTAuthServiceProvider"