LKDevelopment / hetzner-cloud-php-sdk

A PHP SDK for the Hetzner Cloud API
MIT License
104 stars 51 forks source link

Do not extend Guzzle\Client #85

Open tomboe311 opened 2 years ago

tomboe311 commented 2 years ago

Extending Guzzle\Client is deprecated since Guzzle 7.1 and the class is annotated as @final. The class will be actually final in Guzzle 8.0.

See guzzle issue#2521

tacman commented 1 year ago

On a related note, what about switching to the Symfony HttpClient? Or simply requiring that the application implement a psr-7 interface, and not providing a specific implementation of one?