From f40306ad5e6061613bd1a4b0f97404599608c97b Mon Sep 17 00:00:00 2001
From: Michael Babker <michael.babker@gmail.com>
Date: Mon, 6 Dec 2021 16:34:38 -0600
Subject: [PATCH] Bump minimum PHP to 7.4

---
 .github/workflows/ci.yml | 12 ------------
 composer.json            |  2 +-
 2 files changed, 1 insertion(+), 13 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fb3698d..1feeac2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,11 +15,6 @@ jobs:
           - server
         php:
           - 7.4
-          - 7.3
-          - 7.2
-          - 7.1
-          - 7.0
-          - 5.6
     steps:
       - uses: actions/checkout@v2
       - name: Setup PHP
@@ -33,11 +28,4 @@ jobs:
       - run: sh tests/ab/run_ab_tests.sh
         env:
             ABTEST: ${{ matrix.env }}
-            SKIP_DEFLATE: _skip_deflate
-        if: ${{ matrix.php <= 5.6 }}
-
-      - run: sh tests/ab/run_ab_tests.sh
-        env:
-            ABTEST: ${{ matrix.env }}
-        if: ${{ matrix.php >= 7.0 }}
       - run: vendor/bin/phpunit --verbose
diff --git a/composer.json b/composer.json
index 054a8fb..0cb918f 100644
--- a/composer.json
+++ b/composer.json
@@ -26,7 +26,7 @@
         }
     },
     "require": {
-        "php": ">=5.4.2",
+        "php": ">=7.4",
         "guzzlehttp/psr7": "^2 || ^1.7"
     },
     "require-dev": {