dronezzzko / guzzle-simple-circuit-breaker
An implementation of the Circuit Breaker pattern for Guzzle
dev-main
2022-03-02 19:34 UTC
Requires
- php: ^7.4
- ext-json: *
- guzzlehttp/guzzle: ^7
Requires (Dev)
- desarrolla2/cache: ^3
- phpunit/phpunit: ^9
- symfony/cache: ^5
This package is auto-updated.
Last update: 2025-03-29 00:52:16 UTC
README
Implementation of the Circuit Breaker pattern for Guzzle that prevents sending failed requests in a row.
How To Install
composer require dronezzzko/guzzle-simple-circuit-breaker
How To Use
use GuzzleHttp\HandlerStack; use GuzzleHttp\Handler\CurlHandler; use GuzzleHttp\Client; use Dronezzzko\SimpleCircuitBreakerMiddleware; $stack = HandlerStack::create(); $stack->push(SimpleCircuitBreakerMiddleware::factory($cache)); $client = new Client(['handler' => $stack]);