ibyeyoga/easy-auth

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

jwt component.

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ibyeyoga/easy-auth

1.0 2019-12-13 16:28 UTC

This package is not auto-updated.

Last update: 2025-12-21 20:19:17 UTC


README

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);