1. Go to this page and download the library: Download ngabor84/laravel-jwt-auth library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
return [
'secret' => env('JWT_SECRET'),
'algo' => 'HS256',
'expiration' => 10, // 10 minutes
'decorateRequestWithTokenPayload' => false, // if it's true then after authentication the request will contain a tokenPayload attribute with the payload of the JWT token
];