Skip to content

Releases: byjg/php-jwt-wrapper

Release 4.9.1

04 Jan 20:10
cf0886d
Compare
Choose a tag to compare

What's Changed

  • 4.9 by @byjg in #8
  • Upgrade Firebase library to ^6

Full Changelog: 4.9.0...4.9.1

4.9.0

21 May 20:24
65df051
Compare
Choose a tag to compare

What's Changed

  • Upgrade firebase/php-jwt component by @byjg in #7

Full Changelog: 2.0.2...4.9.0

Release 2.0.2

17 Jun 17:01
b26045f
Compare
Choose a tag to compare

Add Leeway property

Release 2.0.1

19 Nov 02:54
Compare
Choose a tag to compare

Added static method generateSecret($bytes)

Release 2.0.0

09 Jan 02:38
0fcf39f
Compare
Choose a tag to compare

Major changes in the JwtWrapper breaking compatibility with old code:

  • Added unit tests to perform upgrade of components (Issue #1)
  • Upgrade to Firebase Library to 5.0.0
  • Added the algorithm RS512.
  • Added JwtKeyInterface (break compatibility)

Examples:

before

<?php
$jwt = new JwtWrapper("domain.com", "mykey")

Now

<?php
$jwt = new JwtWrapper("domain.com", new JwtKeySecret("mykey"))

Release 1.0.1

15 Mar 18:20
Compare
Choose a tag to compare
Fix BUG on token generation

Release 1.0.0

08 Feb 14:57
Compare
Choose a tag to compare

First Release