forked from caseyamcl/guzzle_retry_middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.99 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
61
62
63
64
{
"name": "caseyamcl/guzzle_retry_middleware",
"type": "library",
"description": "Guzzle v6+ retry middleware that handles 429/503 status codes and connection timeouts",
"keywords": [
"caseyamcl",
"guzzle_retry_middleware",
"guzzle",
"middleware",
"retry",
"back-off",
"retry-after"
],
"homepage": "https://github.com/caseyamcl/guzzle_retry_middleware",
"license": "MIT",
"authors": [
{
"name": "Casey McLaughlin",
"email": "[email protected]",
"homepage": "https://caseymclaughlin.com",
"role": "Developer"
}
],
"require": {
"php" : "^7.1|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0"
},
"require-dev": {
"jaschilz/php-coverage-badger": "^2.0",
"nesbot/carbon": "^2.0|^3.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^7.5|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/var-dumper": "^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"GuzzleRetry\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GuzzleRetry\\": "tests"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit; vendor/bin/php-coverage-badger build/logs/clover.xml ./coverage.svg",
"check-style": "phpcs -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"phpstan": "vendor/bin/phpstan analyse -l 8 src tests --xdebug --memory-limit 256M"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}