zozlak/guzzle-proxy-client
A wrapper around GuzzleHttp Client honoring proxy settings in http_proxy, https_proxy and no_proxy environment variables
Maintainers
1.1.0
2025-06-06 16:19 UTC
Requires
- guzzlehttp/guzzle: >=6
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 42f08a0ac0759743bf107e16ea9a5223cf799e95
- Mateusz Żółtak <zozlak.woop@zozlak.org>
This package is auto-updated.
Last update: 2026-06-06 18:15:43 UTC
README
A tiny wrapper for the Guzzle Client applying proxy settings from the http_proxy, https_proxy and no_proxy environment variables.
Installation
composer require zozlak/guzzle-proxy-client
Usage
// without Guzzle Client options $guzzleClient = \zozlak\ProxyClient::factory(); // with some Guzzle Client options $guzzleClient = \zozlak\ProxyClient::factory(['auth' => ['foo', 'bar']]);
