diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3357195c..3a0094b2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -27,6 +27,7 @@ jobs: php-version: - '7.3' - '7.4' + - '8.0' dependencies: [highest] allowed-to-fail: [false] variant: [normal] @@ -35,10 +36,6 @@ jobs: dependencies: lowest allowed-to-fail: false variant: normal - - php-version: '8.0' - dependencies: highest - allowed-to-fail: true - variant: normal - php-version: '7.4' dependencies: highest allowed-to-fail: false @@ -58,10 +55,6 @@ jobs: - name: Add PHPUnit matcher run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - - name: Configuration required for PHP 8.0 - if: matrix.php-version == '8.0' - run: composer config platform.php 7.4.99 - - name: Install variant if: matrix.variant != 'normal' run: composer require ${{ matrix.variant }} --no-update diff --git a/composer.json b/composer.json index 5d9abb7f..6806ba59 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "^7.3", + "php": "^7.3 || ^8.0", "doctrine/doctrine-bundle": "^1.12 || ^2.0", "doctrine/persistence": "^1.3 || ^2.0", "laminas/laminas-diagnostics": "^1.6",