1{
2  "name": "kevinrob/guzzle-cache-middleware",
3  "type": "library",
4  "description": "A HTTP/1.1 Cache for Guzzle 6. It's a simple Middleware to be added in the HandlerStack. (RFC 7234)",
5  "keywords": ["guzzle", "guzzle6", "cache", "http", "http 1.1", "psr6", "psr7", "handler", "middleware", "cache-control", "rfc7234", "performance", "php", "promise", "expiration", "validation", "Etag", "flysystem", "doctrine"],
6  "homepage": "https://github.com/Kevinrob/guzzle-cache-middleware",
7  "license": "MIT",
8  "authors": [
9    {
10      "name": "Kevin Robatel",
11      "email": "kevinrob2@gmail.com",
12      "homepage": "https://github.com/Kevinrob"
13    }
14  ],
15  "require": {
16    "php": ">=5.5.0"
17  },
18  "require-dev": {
19    "phpunit/phpunit": "^4.0 || ^5.0",
20    "guzzlehttp/guzzle": "^6.0",
21    "doctrine/cache": "^1.0",
22    "league/flysystem": "^1.0",
23    "psr/cache": "^1.0",
24    "cache/array-adapter": "^0.4",
25    "illuminate/cache": "^5.0"
26  },
27  "autoload": {
28    "psr-4": {
29      "Kevinrob\\GuzzleCache\\": "src/"
30    }
31  },
32  "autoload-dev": {
33    "psr-4": {
34      "Kevinrob\\GuzzleCache\\Tests\\": "tests/"
35    }
36  },
37  "suggest": {
38    "guzzlehttp/guzzle": "For using this library. It was created for Guzzle6. (but you can use it with any PSR-7 HTTP Client)",
39    "doctrine/cache": "This library have a lot of ready-to-use cache storage (to be use with Kevinrob\\GuzzleCache\\Storage\\DoctrineCacheStorage)",
40    "league/flysystem": "To be use with Kevinrob\\GuzzleCache\\Storage\\FlysystemStorage",
41    "psr/cache": "To be use with Kevinrob\\GuzzleCache\\Storage\\Psr6CacheStorage",
42    "laravel/framework": "To be use with Kevinrob\\GuzzleCache\\Storage\\LaravelCacheStorage"
43  }
44}
45