dev-master
9999999-dev https://github.com/chunyu-zhou/jwtA simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.
BSD-3-Clause
The Requires
- php >=5.3.0
The Development Requires
by chunyu
A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.
A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 7519., (*1)
Use composer to manage your dependencies and download PHP-JWT:, (*2)
composer require chunyu/jwt
"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($token, $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')); ?>
"example.org", "aud" => "example.com", "iat" => 1356999524, "nbf" => 1357000000 ); $jwt = JWT::encode($token, $privateKey, 'RS256'); echo "Encode:\n" . print_r($jwt, true) . "\n"; $decoded = JWT::decode($jwt, $publicKey, array('RS256')); /* 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; echo "Decode:\n" . print_r($decoded_array, true) . "\n"; ?>
Run the tests using phpunit:, (*3)
$ pear install PHPUnit $ phpunit --configuration phpunit.xml.dist PHPUnit 3.7.10 by Sebastian Bergmann. ..... Time: 0 seconds, Memory: 2.50Mb OK (5 tests, 5 assertions)
If your private key contains \n
characters, be sure to wrap it in double quotes ""
and not single quotes ''
in order to properly interpret the escaped characters., (*4)
3-Clause BSD., (*5)
A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.
BSD-3-Clause