Releases: LarsGrevelink/php-simple-jwt
1.0.0
Version 0.4.0
Added conditions, claims and various (blueprint) signing and verification methods for a more flexible implementation of the package. Blueprints can now be fully in charge of how tokens are generated, signed and verified.
Version 0.3.0
To ease and centralise the way of signing a token; a small utility was added. The TokenSignature
class has two different methods of being used. It can either be applied to the token itself through Token->signature
or through the blueprint's TokenBlueprint::generateAndSign
method. It can be used to keep the actual construction of the signature away from the implementation logic.
Version 0.2.0
Increased validation when parsing JWT Tokens and better separation of thrown exception so a better distinction can be made on the integration level. Global documentation, typing and test improvements now covering almost 100% of the codebase.
Version 0.1.0
The initial release of the package. Supports generating and parsing HMAC and RSA signed JWT tokens and adds the initial version of TokenBlueprint
generation and validation.