{
"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"
}
|