Ignore all platform reqs on PHP 8.3, as openswoole cannot be installed there

This commit is contained in:
Alejandro Celaya
2023-11-04 13:03:10 +01:00
parent 2cb8486bb3
commit 4cddb573a0
2 changed files with 2 additions and 2 deletions

View File

@@ -43,5 +43,5 @@ runs:
ini-values: pcov.directory=module
- name: Install dependencies
if: ${{ inputs.install-deps == 'yes' }}
run: composer install --no-interaction --prefer-dist ${{ inputs.php-version == '8.3' && '--ignore-platform-req=php' || '' }}
run: composer install --no-interaction --prefer-dist ${{ inputs.php-version == '8.3' && '--ignore-platform-reqs' || '' }}
shell: bash