jwt-guard maintained by wisoot
Last update
2017/07/01 06:28
License
Require
- php >=5.6
- firebase/php-jwt 4.0.*
- laravel/framework >=5.2
Last update
2017/07/01 06:28
License
Require
- php >=5.6
- firebase/php-jwt 4.0.*
- laravel/framework >=5.2
Last update
2017/07/01 06:28
License
Require
- php >=5.6
- firebase/php-jwt 4.0.*
- laravel/framework >=5.2
Last update
2016/08/31 06:18
License
Require
- php >=5.6
- firebase/php-jwt 4.0.*
- laravel/framework 5.2.*
Last update
2016/08/31 04:30
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/06/01 10:39
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/05/19 00:11
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/05/06 00:59
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/05/05 01:39
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/05/05 00:59
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/05/05 00:34
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/05/05 00:25
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/04/29 03:26
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/04/29 00:59
License
Require
- php >=5.6
- firebase/php-jwt 3.0.*
- laravel/framework 5.2.*
Last update
2016/04/08 01:07
License
Require
- php >=5.6
- tymon/jwt-auth 0.5.*
- illuminate/contracts 5.2.*
- illuminate/auth 5.2.*
- illuminate/http 5.2.*
- illuminate/session 5.2.*
comments powered by Disqus
Jwt Guard
Jwt Guard is alternative Laravel 5.2 Guard Driver which is implemented using JSON Web Token (JWT)
The MIT License (MIT). Please see License File for more information.
Install
To install this package you will need:
- Laravel 5.2
- PHP 5.6+
Via Composer
$ composer require wisoot/jwt-guard
Add the Service Provider
Open config/app.php
and, to your providers
array at the bottom, add:
WWON\JwtGuard\Providers\JwtGuardServiceProvider::class
Publish config file and database migration
php artisan vendor:publish --provider="WWON\JwtGuard\Providers\JwtGuardServiceProvider"
Update jwt.php
config to suit your project, run the migration, then you are good to go.
Usage
In config/auth.php
config file you have access to jwt
driver.