PHPackages                             rymanalu/laravel-circuit-breaker - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. rymanalu/laravel-circuit-breaker

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

rymanalu/laravel-circuit-breaker
================================

Circuit Breaker pattern implementation in Laravel 5.

v1.0.1(9y ago)51.2k1MITPHPPHP &gt;=5.5.9

Since Dec 8Pushed 9y ago4 watchersCompare

[ Source](https://github.com/rymanalu/laravel-circuit-breaker)[ Packagist](https://packagist.org/packages/rymanalu/laravel-circuit-breaker)[ Docs](https://github.com/rymanalu/laravel-circuit-breaker)[ RSS](/packages/rymanalu-laravel-circuit-breaker/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (5)Versions (4)Used By (0)

Laravel 5 Circuit Breaker
=========================

[](#laravel-5-circuit-breaker)

[![Build Status](https://camo.githubusercontent.com/62c1145b2fea3250818b86c350fd12a1316f820a4bfc721862d7b54c88f6a614/68747470733a2f2f7472617669732d63692e6f72672f72796d616e616c752f6c61726176656c2d636972637569742d627265616b65722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/rymanalu/laravel-circuit-breaker)

This package provides an implementation of Circuit Breaker pattern for Laravel 5.

Installation
------------

[](#installation)

First, install this package:

```
composer require rymanalu/laravel-circuit-breaker

```

Next, add the ServiceProvider to the providers array in `config/app.php`:

```
Rymanalu\LaravelCircuitBreaker\CircuitBreakerServiceProvider::class,
```

You can use the facade for shorter code. Add this to your aliases:

```
'CircuitBreaker' => Rymanalu\LaravelCircuitBreaker\CircuitBreakerFacade::class,
```

APIs
----

[](#apis)

```
