Guzzle Oauth2 Subscriber Versions Save

OAuth 2.0 Client for Guzzle 4, 5, 6 and 7 with PHP 5.4 - PHP 8.0 - no more dependency hell!

v1.1.0

2 weeks ago

PHP Minimum Version

This release drops support for PHP 5 and now requires PHP 7.1 or newer.

What's Changed

New Contributors

Full Changelog: https://github.com/kamermans/guzzle-oauth2-subscriber/compare/v1.0.13...v1.1.0

v1.0.13

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/kamermans/guzzle-oauth2-subscriber/compare/v1.0.12...v1.0.13

v1.0.12

1 year ago
  • PHPUnit compatibility fixes
  • Docker test runner updates
  • Better return type hinting

v1.0.11

2 years ago
  • Exclude test files / shims from package to fix errors in PHPStorm

v1.0.10

2 years ago

Added support for GuzzleHttp\Psr7 v1.7.0+, which deprecated (and eventually removed) the stream_for helper.

v1.0.9

2 years ago

Added support for audience parameter, thanks @fabiang!

v1.0.8

3 years ago
  • Added the ability to specify a custom token factory (thanks @thiakil!)

v1.0.7

3 years ago
  • Added support for Guzzle 7 (thanks @lasselehtinen!)
  • Improved testing matrix (combinations of Guzzle and PHP versions)

v1.0.6

5 years ago

Updates:

  • Added ClosureTokenPersistence for wrapping other cache providers.
  • Added Laravel5CacheTokenPersistence for using the Laravel 5 cache (thanks @threesquared!).
  • Added License file to make the license more clear

v1.0.5

5 years ago

This release includes:

  • Support for PSR-16: Common Interface for Caching Libraries cache adapters.
  • New NullGrantType for manually specifying an access token without a method for retrieving a new one (see the README for more details).
  • The ability to get the RawToken object so you can directly access the OAuth access token and refresh token (if available).
  • Fix for incorrect signer interfaces in OAuth2Handler constructor.
  • Exclusive lock on token write for thread safety.