summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArjan Keeman <akeeman@users.noreply.github.com>2017-06-19 18:34:20 +0200
committerRob DiMarco <rdimarco@google.com>2017-06-19 09:34:20 -0700
commit407a78d1de53feb44050e315562e988336d8d284 (patch)
treefc5f59da5789d2d3a53e4774e2084fa3efd26a8e
parent7f72b48d1fc07525b277ee83533b5e2305e3de14 (diff)
downloadphp-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.php2
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
*