diff options
author | Arjan Keeman <akeeman@users.noreply.github.com> | 2017-06-19 18:34:20 +0200 |
---|---|---|
committer | Rob DiMarco <rdimarco@google.com> | 2017-06-19 09:34:20 -0700 |
commit | 407a78d1de53feb44050e315562e988336d8d284 (patch) | |
tree | fc5f59da5789d2d3a53e4774e2084fa3efd26a8e | |
parent | 7f72b48d1fc07525b277ee83533b5e2305e3de14 (diff) | |
download | php-jwt-407a78d1de53feb44050e315562e988336d8d284.zip php-jwt-407a78d1de53feb44050e315562e988336d8d284.tar.gz php-jwt-407a78d1de53feb44050e315562e988336d8d284.tar.bz2 |
draft-ietf-oauth-json-web-token-06 --> rfc7519 (#107)
The README says this package is conform rfc7519 (May 2015) rather than just the 6th draft (valid until June 2013). The implementation seems indeed to be compatible with the rfc.
-rw-r--r-- | src/JWT.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JWT.php b/src/JWT.php index ea3cc7d..607710d 100644 --- a/src/JWT.php +++ b/src/JWT.php @@ -8,7 +8,7 @@ use \DateTime; /** * JSON Web Token implementation, based on this spec: - * http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-06 + * https://tools.ietf.org/html/rfc7519 * * PHP version 5 * |