-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.34 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
{
"name": "mingalevme/retryable-psr-http-client",
"description": "The package provides a familiar PSR HTTP Client interface with automatic retries and exponential backoff (and others strategies). It is a thin wrapper over the standard PSR HTTP Client and exposes same public API. This makes the decorator very easy to drop into existing programs.",
"type": "library",
"homepage": "https://github.com/mingalevme/retryable-psr-http-client-php",
"license": "MIT",
"keywords": ["psr", "http-client"],
"provide": {
"psr/http-client-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Mingalevme\\RetryablePsrHttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mingalevme\\Tests\\RetryablePsrHttpClient\\": "tests/"
}
},
"authors": [
{
"name": "Mingalev Mikhail",
"email": "mingalevme@gmail.com"
}
],
"require": {
"php": "^8.0",
"psr/http-client": "^1.0",
"psr/clock": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"vimeo/psalm": "^5.1",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"guzzlehttp/psr7": "^2.4",
"mingalevme/psr-http-client-stubs": "^2.0",
"squizlabs/php_codesniffer": "^3.7"
}
}