Skip to content

Commit b43315d

Browse files
author
Bui Sy Nguyen
committed
Update README
1 parent cf18cf9 commit b43315d

File tree

2 files changed

+5
-29
lines changed

2 files changed

+5
-29
lines changed

README.md

Lines changed: 4 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -63,36 +63,12 @@ $decoded = JWT::decode($jwt, $key, array('HS256'));
6363

6464
Changelog
6565
---------
66+
#### 3.0.3 / 2015-11-05
67+
- Minimum PHP version updated from `5.3.0` to `5.4.0`.
68+
- Add JWK support
6669

6770
#### 3.0.0 / 2015-07-22
68-
- Minimum PHP version updated from `5.2.0` to `5.3.0`.
69-
- Add `\Firebase\JWT` namespace. See
70-
[#59](https://github.com/fproject/php-jwt/pull/59) for details. Thanks to
71-
[@Dashron](https://github.com/Dashron)!
72-
- Require a non-empty key to decode and verify a JWT. See
73-
[#60](https://github.com/fproject/php-jwt/pull/60) for details. Thanks to
74-
[@sjones608](https://github.com/sjones608)!
75-
- Cleaner documentation blocks in the code. See
76-
[#62](https://github.com/fproject/php-jwt/pull/62) for details. Thanks to
77-
[@johanderuijter](https://github.com/johanderuijter)!
78-
79-
#### 2.2.0 / 2015-06-22
80-
- Add support for adding custom, optional JWT headers to `JWT::encode()`. See
81-
[#53](https://github.com/fproject/php-jwt/pull/53/files) for details. Thanks to
82-
[@mcocaro](https://github.com/mcocaro)!
83-
84-
#### 2.1.0 / 2015-05-20
85-
- Add support for adding a leeway to `JWT:decode()` that accounts for clock skew
86-
between signing and verifying entities. Thanks to [@lcabral](https://github.com/lcabral)!
87-
- Add support for passing an object implementing the `ArrayAccess` interface for
88-
`$keys` argument in `JWT::decode()`. Thanks to [@aztech-dev](https://github.com/aztech-dev)!
89-
90-
#### 2.0.0 / 2015-04-01
91-
- **Note**: It is strongly recommended that you update to > v2.0.0 to address
92-
known security vulnerabilities in prior versions when both symmetric and
93-
asymmetric keys are used together.
94-
- Update signature for `JWT::decode(...)` to require an array of supported
95-
algorithms to use when verifying token signatures.
71+
- Original features from firebase/php-jwt repository
9672

9773

9874
Tests

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"license": "BSD-3-Clause",
2323
"require": {
24-
"php": ">=5.3.0"
24+
"php": ">=5.4.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)