ibyeyoga/easy-auth

There is no license information available for the latest version (1.0) of this package.

jwt component.

1.0 2019-12-13 16:28 UTC

This package is not auto-updated.

Last update: 2024-06-23 13:26:33 UTC


README

EasyAuth

A easy compnent for jwt.

How to use?
composer require ibyeyoga/easy-auth
And then:
use IBye\EasyAuth\Auth;

$auth = new Auth();

//getting token
$token = $auth->getToken('hello world');

//parsing token
$info = $auth->parseToken($token);