18 lines
510 B
PHP
18 lines
510 B
PHP
|
<?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'),
|
||
|
|
||
|
'signer' => \Lcobucci\JWT\Signer\Hmac\Sha256::class,
|
||
|
];
|