gilclei / my-jwt
A simple library to encode and decode JSON Web Tokens (JWT) in PHP
1.0.1
2022-08-20 18:10 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: =8.3.5
- squizlabs/php_codesniffer: 3.5.*
This package is not auto-updated.
Last update: 2024-11-11 03:06:05 UTC
README
My-JWT
A simple library to encode and decode JSON Web Tokens (JWT) in PHP.
Installation
Use composer to manage your dependencies and download My-JWT:
composer require gilclei/my-jwt
Example
<?php use \Gilclei\JWT\JWT; $key = "example_key"; $payload = array( "iss" => "http://example.org", "aud" => "http://example.com", "iat" => 1356999524, "nbf" => 1357000000 ); /** * IMPORTANT: * You must specify supported algorithms for your application. See * https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-40 * for a list of spec-compliant algorithms. */ $jwt = JWT::encode($payload, $key); $decoded = JWT::decode($jwt, $key, array('HS256')); print_r($decoded); /* NOTE: This will now be an object instead of an associative array. To get an associative array, you will need to cast it as such: */ $decoded_array = (array) $decoded; /** * You can add a leeway to account for when there is a clock skew times between * the signing and verifying servers. It is recommended that this leeway should * not be bigger than a few minutes. * * Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef */ JWT::$leeway = 60; // $leeway in seconds $decoded = JWT::decode($jwt, $key, array('HS256')); ?>
php exemplo.php
vendor/bin/phpunit tests/