diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 983c4bd85..14e8f4431 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -13,11 +13,13 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['7.4', '8.0', '8.1'] + php-version: ['7.4', '8.0', '8.1', '8.2'] experimental: [false] + composer_args: "" include: - - php-version: 8.2 + - php-version: 8.3 experimental: true + composer_args: "--ignore-platform-reqs" steps: - uses: actions/checkout@v3 @@ -44,7 +46,7 @@ jobs: - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' - run: composer install --prefer-dist --no-progress --no-suggest + run: composer install --prefer-dist --no-progress --no-suggest ${{ matrix.composer_args }} - name: Check Style continue-on-error: ${{ matrix.experimental }}