vkoori/jwt

Integration of adhocore/jwt library for laravel/lumen.
796
Install
composer require vkoori/jwt
Latest Version:1.0.0
PHP:>=8.1
Last Updated:Mar 23, 2023
Links: GitHub  ·  Packagist
Maintainer: vkoori

Installation

composer require vkoori/jwt

Doc

By using this library, in addition to the features of adhocore/jwt, you can also benefit from blacklist and refresh token.

You need to add the following to the env file:

JWT_BLACK_LIST=false
JWT_KEY=secret
JWT_ALGO=HS256
JWT_MAX_AGE=3600
JWT_LEEWAY=0

Sample

(new JWT)->encode(payload: [], header: []);
(new JWT)->decode(token: '', verify: true);
(new JWT)->refresh(token: '');
(new JWT)->expire(token: '');

adhocore/jwt documention

Powered By Koorosh safe Ashrafi