Obliterate JWT from codebase

This commit is contained in:
Dane Everitt 2018-07-14 22:48:09 -07:00
parent 6336e5191f
commit 550c622d3b
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 3 additions and 125 deletions

View file

@ -1,18 +0,0 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| JWT Signing Key
|--------------------------------------------------------------------------
|
| This key is used for the verification of JSON Web Tokens in flight and
| should be different than the application encryption key. This key should
| be kept private at all times.
|
*/
'key' => env('APP_JWT_KEY'),
'lifetime' => env('APP_JWT_LIFETIME', 1440),
'signer' => \Lcobucci\JWT\Signer\Hmac\Sha256::class,
];