-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.68 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ksaveras/guzzle-circuit-breaker-middleware",
"type": "library",
"keywords": [
"circuit breaker",
"graceful",
"error handling",
"fault tolerance",
"microservices",
"guzzle",
"middleware"
],
"license": "MIT",
"authors": [
{
"name": "Ksaveras Sakys",
"email": "xawiers@gmail.com"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^6.0|^7.0",
"ksaveras/circuit-breaker": "^2.0.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.19",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.2",
"rector/rector": "^0.17.1"
},
"autoload": {
"psr-4": {
"Ksaveras\\GuzzleCircuitBreakerMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ksaveras\\GuzzleCircuitBreakerMiddleware\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "@php ./vendor/bin/php-cs-fixer fix --dry-run --diff",
"phpcs:fix": "@php ./vendor/bin/php-cs-fixer fix",
"phpstan": "@php ./vendor/bin/phpstan analyse",
"rector": "@php ./vendor/bin/rector process --dry-run",
"rector:fix": "@php ./vendor/bin/rector process",
"test": "@php -dapc.enable_cli=1 ./vendor/bin/phpunit",
"test:coverage": "@php -dapc.enable_cli=1 ./vendor/bin/phpunit --coverage-clover=coverage/clover.xml",
"static-analysis": [
"@phpcs",
"@phpstan",
"@rector"
]
},
"config": {
"sort-packages": true
},
"version": "1.0.1"
}