From 2b630fe489e5c4ed9ecae8664053ae5be52ff542 Mon Sep 17 00:00:00 2001 From: Gabriel Anhaia Date: Tue, 23 Jun 2020 20:20:59 -0300 Subject: [PATCH 1/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e7f6b88..8f3b01e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ [![Build Status](https://travis-ci.com/gabrielanhaia/laravel-circuit-breaker.svg?branch=master)](https://travis-ci.com/gabrielanhaia/laravel-circuit-breaker) +![Code Coverage](https://img.shields.io/badge/coverage-100%25-green) ![Licence](https://img.shields.io/badge/licence-MIT-green) ![Package Stars](https://img.shields.io/badge/stars-%E2%98%85%E2%98%85%E2%98%85%E2%98%85%E2%98%85-yellow) ![Packagist Downloads](https://img.shields.io/github/downloads/gabrielanhaia/php-circuit-breaker/total) From 315efb444762c0a6d21b0afb7e7310cf6a61875d Mon Sep 17 00:00:00 2001 From: Gabriel Anhaia Date: Tue, 23 Jun 2020 20:21:40 -0300 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f3b01e..af9de56 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Build Status](https://travis-ci.com/gabrielanhaia/laravel-circuit-breaker.svg?branch=master)](https://travis-ci.com/gabrielanhaia/laravel-circuit-breaker) ![Code Coverage](https://img.shields.io/badge/coverage-100%25-green) -![Licence](https://img.shields.io/badge/licence-MIT-green) +![Licence](https://img.shields.io/badge/licence-MIT-blue) ![Package Stars](https://img.shields.io/badge/stars-%E2%98%85%E2%98%85%E2%98%85%E2%98%85%E2%98%85-yellow) ![Packagist Downloads](https://img.shields.io/github/downloads/gabrielanhaia/php-circuit-breaker/total) ![Packagist Downloads](https://img.shields.io/packagist/dt/gabrielanhaia/php-circuit-breaker) From 3b93ae64fb69c6c03ce06667f53699085f91c8bd Mon Sep 17 00:00:00 2001 From: Gabriel Anhaia Date: Tue, 23 Jun 2020 21:54:45 -0300 Subject: [PATCH 3/3] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index af9de56..cea4914 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,13 @@ ![Packagist Downloads](https://img.shields.io/github/downloads/gabrielanhaia/php-circuit-breaker/total) ![Packagist Downloads](https://img.shields.io/packagist/dt/gabrielanhaia/php-circuit-breaker) -## Under development +# PHP Circuit Breaker + +PHP Circuit Breaker was developed based on the book "Release It!: Design and Deploy Production-Ready Software (Pragmatic Programmers)", written by Michael T. Nygard. +In this book, Michael popularized the Circuit Breaker. + +When we work with microservices, it is sometimes common to call these systems, and they are not available, which ends up causing problems in our application. To prevent any problem on our side, and guarantee that a service will not be called loads of times, we should use a Circuit Breaker. + +You can find more information about Circuit Breakers [here](https://martinfowler.com/bliki/CircuitBreaker.html). + +