forked from csarrazi/guzzle-cache-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.62 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.62 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
{
"name": "freshcells/guzzle-cache-middleware",
"description": "A Cache middleware for GuzzleHttp >= 6.0",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Ivo Bathke",
"email": "ivo.bathke@freshcells.de"
},
{ "name": "Charles Sarrazin", "email": "charles@sarraz.in" }
],
"require": {
"php": ">=7.4 || ^8.0",
"guzzlehttp/guzzle": "^6.1 || ^7.0",
"symfony/filesystem": "^4.0 || ^5.0"
},
"suggest": {
"doctrine/cache": "Allows caching of responses",
"psr/cache": "Allows caching of responses",
"namshi/cuzzle": "Output command to repeat request in command line",
"tolerance/tolerance": "Allows retrying failed requests"
},
"require-dev": {
"phpunit/phpunit": "^8",
"doctrine/cache": "^1.1",
"psr/cache": "^1.0",
"symfony/phpunit-bridge": "^4.0|^5.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": { "Csa\\GuzzleHttp\\Middleware\\Cache\\": "src" }
},
"autoload-dev": {
"psr-4": { "Csa\\Tests\\GuzzleHttp\\Middleware\\Cache\\": "tests" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
}
}
}