Skip to content

v2.1.1

@Spomky Spomky tagged this 31 Oct 22:59
* New Easy Toolset

New builder to ease the use of this project.
Offers a simple and fluent way to create, load, verify and decrypt tokens

Example:

```php
$jws = Build::jws()
    ->exp(time() + 3600)
    ->iat(time())
    ->nbf(time())
    ->jti('0123456789', true)
    ->alg('RS512')
    ->sign($this->rsaKey())
```

* Decrypter added

* Auto-load algorithms

* New Easy package

* Critical header support + tests added

* Minor correction

* Zip method test

* Bugs fixed

* New Load class

* Composer branches fixed

* Composer branches fixed

* Errors fixed or ignored

* Errors fixed or ignored

* Micro-optimization

* @throws statements

* @throws statements

* @throws statements + autodispatcher alias

* @throws statements

* Error fixed

* Error fixed

* Error fixed
Assets 2
Loading