Skip to content

Commit

Permalink
Ignore upper limits on PHP version for composer installs in integrati…
Browse files Browse the repository at this point in the history
…on tests
  • Loading branch information
jnoordsij committed Sep 11, 2024
1 parent caeac5d commit 2fdbf1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:

- name: Install dependencies
run: |
composer create-project --prefer-dist laravel/lumen:${{ matrix.lumen }} --stability=dev --no-progress sample
composer create-project --prefer-dist laravel/lumen:${{ matrix.lumen }} --stability=dev --no-progress --ignore-platform-req=php+ sample
cd sample
composer config minimum-stability dev
composer update --prefer-stable --prefer-dist --no-progress
composer update --prefer-stable --prefer-dist --no-progress --ignore-platform-req=php+
- name: Add package from source
run: |
cd sample
Expand Down Expand Up @@ -91,10 +91,10 @@ jobs:

- name: Install dependencies
run: |
composer create-project --prefer-dist laravel/laravel:${{ matrix.laravel }} --stability=dev --no-progress sample
composer create-project --prefer-dist laravel/laravel:${{ matrix.laravel }} --stability=dev --no-progress --ignore-platform-req=php+ sample
cd sample
composer config minimum-stability dev
composer update --prefer-stable --prefer-dist --no-progress
composer update --prefer-stable --prefer-dist --no-progress --ignore-platform-req=php+
- name: Add package from source
run: |
cd sample
Expand Down

0 comments on commit 2fdbf1e

Please sign in to comment.