From aa3b62d8cc3a51899c6d6d5a81f9cd2ba31a5e69 Mon Sep 17 00:00:00 2001 From: Xavier Leune Date: Mon, 3 Jan 2022 10:19:20 +0100 Subject: [PATCH] Update readme to reflect guzzle 7 support This library supports Guzzle 6 and 7, the actual readme only states support for guzzle 6. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4ad6619..25d6024 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Tests](https://github.com/Kevinrob/guzzle-cache-middleware/workflows/Tests/badge.svg) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Kevinrob/guzzle-cache-middleware/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Kevinrob/guzzle-cache-middleware/?branch=master) [![Code Coverage](https://scrutinizer-ci.com/g/Kevinrob/guzzle-cache-middleware/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/Kevinrob/guzzle-cache-middleware/?branch=master) -A HTTP Cache for [Guzzle](https://github.com/guzzle/guzzle) 6. It's a simple Middleware to be added in the HandlerStack. +A HTTP Cache for [Guzzle](https://github.com/guzzle/guzzle) 6+. It's a simple Middleware to be added in the HandlerStack. ## Goals - RFC 7234 compliance @@ -28,7 +28,7 @@ or add it the your `composer.json` and run `composer update kevinrob/guzzle-cach Performance. It's very common to do some HTTP calls to an API for rendering a page and it takes times to do it. # How? -With a simple Middleware added at the top of the `HandlerStack` of Guzzle6. +With a simple Middleware added at the top of the `HandlerStack` of Guzzle. ```php use GuzzleHttp\Client;