-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 1.05 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
{
"name": "nelexa/http-client-simple-cache",
"description": "Guzzle-based HTTP Client with the ability to customize caching of the processed HTTP request results (not based on HTTP headers).",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ne-Lexa",
"email": "alexey@nelexa.ru"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1|^8.0",
"guzzlehttp/guzzle": "^6.5",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"symfony/cache": "^4.4|^5.0",
"symfony/var-dumper": "^4.4|^5.0"
},
"autoload": {
"psr-4": {
"Nelexa\\HttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nelexa\\HttpClient\\Tests\\": "tests/"
}
},
"suggest": {
"symfony/cache": "Install the implementation of the simple cache PSR-16. Full list of packages https://packagist.org/providers/psr/simple-cache-implementation"
}
}