From 816652e52745e5baba0a1651689a80f641cede47 Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Tue, 8 Feb 2022 11:19:15 +0100 Subject: [PATCH] Remove PHP 7.4 support --- .github/workflows/run-tests.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0979555..a0423f2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,8 +8,8 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - php: [7.4, 8.0, 8.1] + os: [macos-latest, ubuntu-latest] + php: [8.0, 8.1] stability: [prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 7fe25b2..053cab0 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^7.3.0 || ^8.0", + "php": "^8.0", "ext-json": "*", "padraic/phar-updater": "^1.0.6" },