Do not ignore platform reqs when using PHP 8.4

This commit is contained in:
Alejandro Celaya 2024-11-18 08:50:20 +01:00
parent 08394431f8
commit b11d5c6864

View File

@ -43,5 +43,5 @@ runs:
coverage: xdebug
- name: Install dependencies
if: ${{ inputs.install-deps == 'yes' }}
run: composer install --no-interaction --prefer-dist ${{ inputs.php-version == '8.4' && '--ignore-platform-req=php' || '' }}
run: composer install --no-interaction --prefer-dist
shell: bash