Skip to content

Commit

Permalink
Fix composer update for PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Dec 1, 2024
1 parent a04a926 commit b8c138a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
coverage: xdebug

- name: Install dependencies with Composer
if: matrix.php-versions < '8.4'
if: matrix.php < '8.4'
run: composer update --prefer-dist --no-progress --no-interaction --ansi

- name: Install dependencies with Composer
if: matrix.php-versions >= '8.4'
if: matrix.php >= '8.4'
run: composer update --prefer-dist --no-progress -no-interaction --ansi --ignore-platform-reqs

- name: Coding standards
Expand Down

0 comments on commit b8c138a

Please sign in to comment.