From 84af5a1bc77e392c32ece0f12bbca155e4ee76b5 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Sat, 20 May 2023 21:32:56 +0200 Subject: [PATCH 1/2] adjust CI to not ignore-platform-reqs --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b50ab2f..b7f490f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,8 +48,6 @@ jobs: run: | if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then composer update --prefer-lowest --prefer-stable - elif ${{ matrix.php-version == '8.1' }}; then - composer update --ignore-platform-reqs else composer update fi From 83f694584526a98ff0f0c9bbec802f7c2edfa41b Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Sat, 20 May 2023 21:39:09 +0200 Subject: [PATCH 2/2] add PHP 8.2 to CI config --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7f490f..98f55bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.2', '7.4', '8.0', '8.1'] + php-version: ['7.2', '7.4', '8.0', '8.1', '8.2'] prefer-lowest: [''] include: - php-version: '7.2'