zozlak/guzzle-proxy-client

A wrapper around GuzzleHttp Client honoring proxy settings in http_proxy, https_proxy and no_proxy environment variables

Maintainers

Package info

github.com/zozlak/guzzleProxyClient

pkg:composer/zozlak/guzzle-proxy-client

Statistics

Installs: 1 817

Dependents: 12

Suggesters: 0

Stars: 0

Open Issues: 0

1.1.0 2025-06-06 16:19 UTC

This package is auto-updated.

Last update: 2026-03-06 17:46:47 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']]);