From 84b0f13129f969cbe747015beba95637b71d8b14 Mon Sep 17 00:00:00 2001 From: mihaileu <54336101+mihaileu@users.noreply.github.com> Date: Tue, 14 Jul 2020 12:32:00 +0300 Subject: [PATCH] Allow guzzle 7 (#308) Allow Guzzle 7 --- README.md | 2 +- composer.json | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d77bfc5..1f6195e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ [![Scrutinizer Score](https://scrutinizer-ci.com/g/8p/EightPointsGuzzleBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/8p/EightPointsGuzzleBundle/) [![License](https://poser.pugx.org/eightpoints/guzzle-bundle/license)](https://packagist.org/packages/eightpoints/guzzle-bundle) -This bundle integrates [Guzzle 6.x][1] into [Symfony][16]. Guzzle is a PHP library for building RESTful web service clients. +This bundle integrates [Guzzle 6.x|7.x][1] into [Symfony][16]. Guzzle is a PHP library for building RESTful web service clients. GuzzleBundle follows semantic versioning. Read more on [semver.org][2]. diff --git a/composer.json b/composer.json index 45853fa..27ea7c3 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ ], "require": { "php": ">=7.1", - "guzzlehttp/guzzle": "~6.0", + "guzzlehttp/guzzle": "~6.0|~7.0", "symfony/framework-bundle": "~4.0|~5.0", "symfony/expression-language": "~4.0|~5.0", "symfony/stopwatch": "~4.0|~5.0", @@ -37,8 +37,7 @@ "symfony/phpunit-bridge": "~4.0|~5.0", "symfony/twig-bundle": "~4.0|~5.0", "symfony/var-dumper": "~4.0|~5.0", - "symfony/yaml": "~4.0|~5.0", - "namshi/cuzzle": "^2.0" + "symfony/yaml": "~4.0|~5.0" }, "suggest": { "namshi/cuzzle": "Outputs Curl command on profiler's page for debugging purposes"