From beea838d30739c8e29a73503b3b511eb1b9838ce Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Tue, 30 Mar 2021 20:41:49 +0200 Subject: [PATCH] Ignore PHP version on PHP 8 on Windows and macOS --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ba1050..6e34e86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,9 +32,11 @@ jobs: - operating-system: 'windows-latest' php-version: '8.0' + composer-flags: '--ignore-platform-req=php' - operating-system: 'macos-latest' php-version: '8.0' + composer-flags: '--ignore-platform-req=php' name: PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }}