diff options
author | Rob DiMarco <rdimarco@google.com> | 2015-07-22 11:31:08 -0700 |
---|---|---|
committer | Rob DiMarco <rdimarco@google.com> | 2015-07-22 11:31:08 -0700 |
commit | fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1 (patch) | |
tree | 6811b2b55e2711aaab752c06847b92e5e8bc3858 /README.md | |
parent | 37a6b73b739f5890275042fcba952a036fc41e36 (diff) | |
download | php-jwt-fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1.zip php-jwt-fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1.tar.gz php-jwt-fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1.tar.bz2 |
Update package.xml and README.md for 3.0.0 releasev3.0.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -65,6 +65,18 @@ $decoded = JWT::decode($jwt, $key, array('HS256')); Changelog --------- +#### 3.0.0 / 2015-07-22 +- Minimum PHP version updated from `5.2.0` to `5.3.0`. +- Add `\Firebase\JWT` namespace. See +[#59](https://github.com/firebase/php-jwt/pull/59) for details. Thanks to +[@Dashron](https://github.com/Dashron)! +- Require a non-empty key to decode and verify a JWT. See +[#60](https://github.com/firebase/php-jwt/pull/60) for details. Thanks to +[@sjones608](https://github.com/sjones608)! +- Cleaner documentation blocks in the code. See +[#62](https://github.com/firebase/php-jwt/pull/62) for details. Thanks to +[@johanderuijter](https://github.com/johanderuijter)! + #### 2.2.0 / 2015-06-22 - Add support for adding custom, optional JWT headers to `JWT::encode()`. See [#53](https://github.com/firebase/php-jwt/pull/53/files) for details. Thanks to |