nixilla/php-jwt

Json Web Token for PHP

Maintainers

Details

github.com/nixilla/php-jwt

Source

Installs: 194 872

Dependents: 1

Suggesters: 0

Security: 0

Stars: 10

Watchers: 3

Forks: 1 394

v0.1.1 2013-05-21 13:32 UTC

This package is auto-updated.

Last update: 2024-03-18 23:05:57 UTC


README

Travis

<?php
require_once './vendor/autoload.php';

$jwt = JWT::encode($token, $key);
$decoded = JWT::decode($jwt, $key);
?>

Installation

{
    "require": {
        "nixilla/php-jwt": "dev-master"
    }
}

PHP-JWT

A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec

Example

<?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);
?>

Tests

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

License

3-Clause BSD.