diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6844fbc..5c5e4a7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] + php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1'] phpunit: ['auto'] experimental: [false] @@ -51,7 +51,7 @@ jobs: experimental: false # Experimental builds. - - php: '8.1' + - php: '8.2' phpunit: 'auto' experimental: true @@ -80,13 +80,13 @@ jobs: # Install dependencies and handle caching in one go. # @link https://github.com/marketplace/actions/install-composer-dependencies - - name: Install Composer dependencies for PHP < 8.1 - if: ${{ matrix.php < 8.1 }} + - name: Install Composer dependencies for PHP < 8.2 + if: ${{ matrix.php < 8.2 }} uses: "ramsey/composer-install@v1" - # For PHP 8.1 and above, we need to install with ignore platform reqs as not all dependencies allow it yet. - - name: Install Composer dependencies for PHP >= 8.1 - if: ${{ matrix.php >= 8.1 }} + # For PHP 8.2 and above, we need to install with ignore platform reqs as not all dependencies allow it yet. + - name: Install Composer dependencies for PHP >= 8.2 + if: ${{ matrix.php >= 8.2 }} uses: "ramsey/composer-install@v1" with: composer-options: --ignore-platform-reqs