-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "flavioheleno/interrupt",
"description": "PSR-18 compliant Circuit Breaker wrapper",
"keywords": ["circuit breaker", "microservices", "fault tolerance", "error handling"],
"license": "MIT",
"autoload": {
"psr-4": {
"Interrupt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Interrupt\\Test\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"flavioheleno/scale": "^0.2.2",
"psr/cache": "^3.0",
"psr/clock": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 | ^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
"psy/psysh": "^0.12",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7"
}
}