-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.59 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.59 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "bizkit/symfony-circuit-breaker-bundle",
"description": "Circuit breaker bundle for Symfony HttpClient.",
"type": "symfony-bundle",
"keywords": [
"symfony",
"symfony-bundle",
"circuit-breaker",
"http-client",
"resilience"
],
"license": "MIT",
"authors": [
{
"name": "HypeMC",
"email": "hypemc@gmail.com"
}
],
"autoload": {
"psr-4": {
"Bizkit\\CircuitBreakerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bizkit\\CircuitBreakerBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"psr/cache": "^3.0",
"psr/clock": "^1.0",
"psr/log": "^3.0",
"symfony/clock": "^6.4 || ^7.4 || ^8.0",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-client": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/messenger": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/phpunit-bridge": "^8.1"
},
"suggest": {
"symfony/console": "Required to use the circuit-breaker console commands."
},
"scripts": {
"run-checks": [
"php-cs-fixer fix -vvv",
"phpunit",
"phpstan analyse"
]
},
"config": {
"audit": {
"block-insecure": false
},
"sort-packages": true
}
}