Skip to content

Commit

Permalink
Fix composer install on 7.x PHP versions
Browse files Browse the repository at this point in the history
The new crwlr/query-string package requires PHP 8. For the ci actions
ignore the PHP version requirement when running composer install.
  • Loading branch information
otsch committed Jun 1, 2022
1 parent 5eb2237 commit 35a361c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: php -v

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs

- name: Run PHP CS Fixer
run: composer cs
Expand All @@ -45,7 +45,7 @@ jobs:
run: php -v

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs

- name: Run tests
run: composer test
Expand All @@ -67,7 +67,7 @@ jobs:
run: php -v

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs

- name: Run PHPStan
run: composer stan

0 comments on commit 35a361c

Please sign in to comment.