PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Carlos Artur Curvelo da Matos   Alecto - Circuit Breaker Pattern All-in-One Implementation   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Alecto - Circuit Breaker Pattern All-in-One Implementation
Execute actions using the Circuit Breaker pattern
Author: By
Last change:
Date: 16 days ago
Size: 684 bytes
 

Contents

Class file image Download
{ "name": "cmatosbc/circuit-breaker", "description": "A robust PHP Circuit Breaker implementation with type safety and modern features", "type": "library", "require": { "php": ">=8.1", "ext-pcntl": "*", "ext-posix": "*" }, "require-dev": { "phpunit/phpunit": "^10.0", "phpstan/phpstan": "^1.10" }, "autoload": { "psr-4": { "Circuit\\": "src/" } }, "autoload-dev": { "psr-4": { "Circuit\\Tests\\": "tests/" } }, "scripts": { "test": "phpunit", "analyse": "phpstan analyse src tests --level=max" }, "license": "MIT" }