Circuit Breaker is a Laravel package that provides a simple and efficient way to manage service calls and prevent cascading failures. It lets you define custom callbacks for key circuit states and run operations with circuit breaker logic.
The following diagram illustrates how the Circuit Breaker Pattern works:
For more info, check the official pattern doc here.
This package requires:
- PHP 8.2+
- Laravel 11+
- A configured Laravel cache driver
You can install the package via Composer:
composer require algoyounes/circuit-breakerYou can publish the configuration file using the following command:
php artisan vendor:publish --provider="AlgoYounes\CircuitBreaker\Providers\CircuitBreakerServiceProvider" --tag="config"You can manage specific services with granular control using the forService(...) method. the service-name parameter is a unique identifier key for your service, ensuring its circuit breaker configuration is isolated from other services.
$circuit = $this->circuitManager->forService('service-name');Tip
Use the unique service-name key across your application to consistently reference the same circuit configuration (e.g., 'payment-service', ...)
You can define callbacks for key circuit states:
| Callback | Description | Parameters Received |
|---|---|---|
onOpen |
Triggered when the circuit goes into OPEN, blocking calls to prevent further failures | CircuitTransition |
onHalfOpen |
The circuit enters HALF-OPEN to test stability, letting one request through | CircuitTransition |
onClose |
The circuit returns to CLOSED, allowing all requests without restrictions | CircuitTransition |
onSuccess |
Fires when a request succeeds, indicating system availability | CircuitResult, CircuitTransition |
onFailure |
Triggered when a request fails, potentially opening the circuit | CircuitResult, CircuitTransition |
onSteadyState |
Indicates the circuit is stable, with no need for changes | CircuitTransition |
Example of defining callbacks:
$circuit->onOpen(function (CircuitTransition $circuitTransition) {
// Your custom logic here
});
$circuit->onSuccess(function (CircuitResult $circuitResult, CircuitTransition $circuitTransition) {
// Your custom logic here
});
// Params passed are optionalTo run an operation and manage its state through the circuit breaker, use the run method:
$circuit->run(function () {
// Your service call here
});
// or
$circuit->run($this->serviceName->create(...));This will execute the provided closure, applying the circuit breaker logic (e.g., open, half-open, closed states) around the service call.
Note
If you prefer a more direct approach, you can create a CircuitBuilder instance:
$circuit = CircuitBuilder::make('service-name')For a simplified approach, use the run method directly from CircuitManager:
$this->circuitManager->run('service-name', function () {
// Your service call here
});
// or
$this->circuitManager->run('service-name', $this->serviceName->create(...));The package provides a Guzzle middleware to automatically manage circuit breaker logic for HTTP requests.
To enable the middleware, add the following to your Guzzle client configuration:
use AlgoYounes\CircuitBreaker\Middleware\GuzzleMiddleware;
use GuzzleHttp\Client;
use GuzzleHttp\HandlerStack;
$stack = HandlerStack::create();
$stack->push(GuzzleMiddleware::create());
$client = new Client([
'handler' => $stack,
]);
$response = $client->get('https://api.example.com', [
'headers' => [
'X-Circuit-Key' => 'service-name',
],
]);The package integrates with Laravel's built-in Http facade out of the box:
use Illuminate\Support\Facades\Http;
$response = Http::withCircuitBreaker('payment-service')
->get('https://api.payment.com/charge', [
'amount' => 1000,
]);This automatically applies the circuit breaker middleware to the request using payment-service as the circuit key. You can chain it with any Http method:
$response = Http::withCircuitBreaker('shipping-service')
->withToken($apiToken)
->timeout(10)
->post('https://api.example.com/track', $payload);When the circuit is open, a RejectedException is thrown:
use AlgoYounes\CircuitBreaker\Guzzle\Exceptions\RejectedException;
try {
$response = Http::withCircuitBreaker('payment-service')
->get('https://api.example.com/charge');
} catch (RejectedException $e) {
// Circuit is open — handle gracefully (e.g., return cached response, queue for retry)
}The circuit breaker operates in three states:
┌──────────────────────────────────────────────────────┐
│ │
▼ │
CLOSED ──── failures ≥ threshold ────► OPEN │
(normal) (all requests │
rejected) │
│ │
cooldown expires │
│ │
▼ │
HALF-OPEN │
(single probe) │
│ │ │
success failure │
│ │ │
│ └──► OPEN │
│ │
└──────────────────┘
- CLOSED — Normal operation. All requests pass through. Failures are counted.
- OPEN — The service is considered down. All requests are rejected immediately without calling the service. After the
cooldown_periodexpires, the circuit moves to HALF-OPEN. - HALF-OPEN — A single probe request is sent to test the service. If it succeeds, the circuit closes. If it fails, the circuit re-opens.
When a circuit transitions from OPEN to HALF-OPEN, this package uses a single-probe approach — only one request is allowed to test the recovering service at a time. All other concurrent requests are rejected immediately until the probe completes.
OPEN (cooldown expired)
│
├── Request A → probes service → success → CLOSED (all traffic resumes)
├── Request B → rejected (fail-fast)
├── Request C → rejected (fail-fast)
└── ...
- If the probe succeeds, the circuit closes and normal traffic resumes.
- If the probe fails, the circuit re-opens and a new cooldown period begins.
What your code receives when a request is rejected:
- Via
run()— returns aCircuitResultwhereisSuccess()andisAvailable()both returnfalse - Via
Http::withCircuitBreaker()or Guzzle middleware — throwsRejectedException
After publishing the config file, you can adjust these settings in config/circuit-breaker.php:
| Option | Default | Description |
|---|---|---|
enabled |
true |
Enable or disable the circuit breaker globally |
defaults.failure_threshold |
5 |
Number of failures before the circuit opens |
defaults.cooldown_period |
60 |
Seconds to wait before transitioning from OPEN to HALF-OPEN |
defaults.success_threshold |
1 |
Successful probes needed in HALF-OPEN to close the circuit |
cache.ttl |
86400 |
Cache entry lifetime in seconds |
cache.prefix |
circuit-breaker |
Prefix for cache keys |
cache.store |
default |
Laravel cache store to use |
You can also override settings per service:
'services' => [
'payment-service' => [
'failure_threshold' => 10,
'cooldown_period' => 120,
'success_threshold' => 3,
],
],Thank you for considering contributing to the Circuit Breaker package! Please check the CONTRIBUTING file for more details.
The Circuit Breaker package is open-sourced software licensed under the MIT license.

