From 3b001d41a2972ff55036e812213d859f2819d929 Mon Sep 17 00:00:00 2001 From: Christian Stocker Date: Fri, 15 Mar 2024 14:46:06 +0100 Subject: [PATCH] remove PHP 7 support --- .github/workflows/ci.yml | 5 ----- .github/workflows/static.yml | 1 - composer.json | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 481fca9..318c7b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,6 @@ jobs: fail-fast: false matrix: include: - - php: '7.3' - - php: '7.3' - env: - COMPOSER_FLAGS: "--prefer-lowest" - - php: '7.4' - php: '8.0' - php: '8.1' - php: '8.1' diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index c7998a2..03fbdfe 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -14,7 +14,6 @@ jobs: fail-fast: false matrix: include: - # phpstan fails on 7.x, due to array_combined not returning false - php: '8.0' - php: '8.1' - php: '8.2' diff --git a/composer.json b/composer.json index eb2dc00..596700c 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ } ], "require": { - "php": "^7.3|^8.0", + "php": "^8.0", "guzzlehttp/guzzle": "^6.5.8|^7.4.5", "jbroadway/urlify": "^1.2", "guzzlehttp/psr7": "^1.9.1|^2.4.5",