-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
48 lines (43 loc) · 1.64 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
{
"name": "gregurco/guzzle-bundle-cache-plugin",
"type": "library",
"description": "Cache Plugin for Guzzle Bundle, a PHP HTTP client library and framework for building RESTful web service clients",
"keywords": ["cache", "middleware", "plugin", "framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
"homepage": "https://github.com/gregurco/GuzzleBundleCachePlugin",
"license": "MIT",
"authors": [
{
"name": "Gregurco Vlad",
"email": "[email protected]",
"homepage": "https://github.com/gregurco"
},
{
"name": "Community",
"homepage": "https://github.com/gregurco/GuzzleBundleCachePlugin/contributors"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.5.8|^7.4.5",
"eightpoints/guzzle-bundle": "~8.0",
"symfony/http-kernel": "~5.0|~6.0|~7.0",
"symfony/config": "~5.0|~6.0|~7.0",
"symfony/dependency-injection": "~5.0|~6.0|~7.0",
"symfony/expression-language": "~5.0|~6.0|~7.0",
"kevinrob/guzzle-cache-middleware": "~4.0|~5.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~5.0|~6.0|~7.0",
"php-coveralls/php-coveralls": "~2.2"
},
"autoload": {
"psr-4": {
"Gregurco\\Bundle\\GuzzleBundleCachePlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gregurco\\Bundle\\GuzzleBundleCachePlugin\\Tests\\": "tests"
}
}
}