Releases: thephpleague/oauth2-client
Releases · thephpleague/oauth2-client
2.1.0
- Allow
expires_in
with a value of 0
2.0.0
- PHP 5.6 or greater is now required
- Rename
getResponse()
to getParsedResponse()
- Add
getResponse()
method that returns the unparsed PSR-7 Response
instance
- Removed
RandomFactory
, switched to native random functions
1.4.2
Fixed
- Random state strings will now always be alpha-numeric, to prevent URI encoding issue #546
1.4.1
Added
- Add
QueryBuilderTrait
to standardize query string generation.
1.4.0
Added
- Add
AccessToken::getValues()
to access additional vendor data provided with tokens.
1.3.0
- Enable dynamic parameters being passed into the authorization URL
- Minor documentation updates
1.2.0
- Add
resource_owner_id
to the JSON-serialized representation of the access token.
- Minor documentation updates and improved test coverage.
1.1.0
- Add
ArrayAccessorTrait
, update AbstractProvider
to utilize.
- Use
expires
to serialize access tokens.
- Documentation updates.
1.0.2
- Allow access tokens to be created from storage (see #431).
- Minor fixes and documentation updates.
1.0.1
- Allow required parameters checked using the
RequiredParameterTrait
to be set as false
, null
, "0"
, etc.