From a5db2bd7297068a1572d2800ec2f8ab9563be26a Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Thu, 6 Jul 2023 14:37:02 +0200 Subject: [PATCH] [!!!][TASK] Raise guzzle requirement --- .github/workflows/ci.yaml | 1 - composer.json | 9 +++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1b467e9..2e0e662 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,6 @@ jobs: matrix: php-version: - 7.4 - - 8.0 - 8.1 - 8.2 steps: diff --git a/composer.json b/composer.json index 6739683..16bfde2 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "require": { "ext-json": "*", - "guzzlehttp/guzzle": "^6.5", + "guzzlehttp/guzzle": "^7.7", "php": "7.4.* || 8.1.* || 8.2.*" }, "autoload": { @@ -29,5 +29,10 @@ "phpunit/phpunit": "^9.3", "phpspec/prophecy-phpunit": "^2.0", "squizlabs/php_codesniffer": "^3.5" - } + }, + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + } }