50onred / php-jwt
A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.
1.0.3
2015-01-14 14:44 UTC
Requires
- php: >=5.2.0
This package is not auto-updated.
Last update: 2024-11-05 16:22:26 UTC
README
PHP-JWT
A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec
Installation
Use composer to manage your dependencies and download PHP-JWT:
composer require firebase/php-jwt
Example
<?php $key = "example_key"; $token = array( "iss" => "http://example.org", "aud" => "http://example.com", "iat" => 1356999524, "nbf" => 1357000000 ); $jwt = JWT::encode($token, $key); $decoded = JWT::decode($jwt, $key); 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; ?>
Tests
Run the tests using phpunit:
$ 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)