PHP code example of phramework / jwt
1. Go to this page and download the library: Download phramework/jwt 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/ */
phramework / jwt example snippets
//Set authentication class
\Phramework\Authentication\Manager::register(
\Phramework\Authentication\JWT\JWT::class
);
//Set method to fetch user object, including password attribute
\Phramework\Authentication\Manager::setUserGetByEmailMethod(
[\MyApp\API\Models\User::class, 'getByEmailWithPassword']
);
\Phramework\Authentication\Manager::setAttributes(
['user_type', 'email']
);