Download the PHP package holidaypirates/pirate-circuit-breaker without Composer
On this page you can find all versions of the php package holidaypirates/pirate-circuit-breaker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download holidaypirates/pirate-circuit-breaker
More information about holidaypirates/pirate-circuit-breaker
Files in holidaypirates/pirate-circuit-breaker
Package pirate-circuit-breaker
Short Description Implementation of the 2-state CircuitBreaker pattern that we use at HolidayPirates
License MIT
Homepage https://www.holidaypirates.group
Informations about the package pirate-circuit-breaker
pirate-circuit-breaker
This is an Implementation of the 2-state (Open and Closed) CircuitBreaker pattern that we use at HolidayPirates.
Unlike the 3-state CircuitBreaker proposed by Fowler, this implementation has only two states, "Open" and "Closed".
Install
Via Composer
Requirements
- PHP 7.3
- An implementation of the
\Psr\SimpleCache\CacheInterface
to store the services failures and circuit state OR your own storage implementation of\HolidayPirates\CircuitBreaker\Storage\StorageInterface
- For development only : Docker and Docker-Compose
Usage
Please note that
HolidayPirates\CircuitBreaker\Service\DummyService
is just an implementation of\HolidayPirates\CircuitBreaker\Service\ServiceInterface
.
You must create your own implementations of\HolidayPirates\CircuitBreaker\Service\ServiceInterface
for each service that you want the CircuitBreaker to operate in.
For more examples of usage please see \HolidayPirates\Tests\Integration\CircuitBreaker\CircuitBreakerTest
Testing
Credits
- Ricardo Fiorani
- All Contributors
License
The MIT License (MIT). Please see License File for more information.