2017 © Pedro PelĂĄez
 

library slimpower-jwt

A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 7519

image

matiasnamendola/slimpower-jwt

A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 7519

  • Thursday, June 15, 2017
  • by matiasamendola
  • Repository
  • 1 Watchers
  • 0 Stars
  • 26 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

SlimPower - JWT

Latest version ![Total Downloads][ico-downloads], (*1)

Latest Stable Version Latest Unstable Version Total Downloads Monthly Downloads Daily Downloads composer.lock available, (*2)

A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 7519., (*3)

Installation

In terminal, use composer to manage your dependencies and download 'Slimpower JWT':, (*4)

composer require matiasnamendola/slimpower-jwt

Or you can add use this as your composer.json:, (*5)

{
    "require": {
        "matiasnamendola/slimpower-jwt": "dev-master"
    }
}

Example

 "http://example.org",
    "aud" => "http://example.com",
    "iat" => 1481113105,
    "nbf" => 1481000000
);

/**
 * 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'));

?>

Credits

License

The MIT License (MIT). Please see License File for more information., (*6)

The Versions

15/06 2017

dev-master

9999999-dev https://github.com/matiasnamendola/slimpower-jwt

A simple library to encode and decode JSON Web Tokens (JWT) in PHP, conforming to RFC 7519

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

php json jwt

07/12 2016

v0.0.1-alpha

0.0.1.0-alpha https://github.com/matiasnamendola/slimpower-config

Config is a file configuration loader that supports PHP, INI, XML, JSON, and YML files.

  Sources   Download

MIT

The Requires

 

php json xml ini config yaml yml