<?php
require_once './vendor/autoload.php';
$jwt = JWT::encode($token, $key);
$decoded = JWT::decode($jwt, $key);
?>
{
"require": {
"nixilla/php-jwt": "dev-master"
}
}
A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec
<?php
require_once './vendor/autoload.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);
?>
Run the tests using phpunit:
git clone https://github.com/jwmickey/php-jwt.git && \
cd php-jwt && \
mkdir bin && \
curl -sS https://getcomposer.org/installer | php -- --install-dir=bin && \
./bin/composer.phar install --dev && \
./bin/phpunit