From 4b6f27d9d837c099b219ad7674d6c35f1dbad1a7 Mon Sep 17 00:00:00 2001 From: Rena Holmgren Date: Sun, 20 Jun 2021 10:11:57 +0200 Subject: [PATCH] composer.json: remove --prefer-lowest (#1217) IMHO it's impractical to expect this package to have to work with the "first release of Laravel for any major release" even when there are already sever more releases: no one is/should stick to that version. This is a re-submit of https://github.com/barryvdh/laravel-ide-helper/pull/1076 See also: - https://github.com/barryvdh/laravel-ide-helper/pull/1216#issuecomment-831029022 - https://github.com/barryvdh/laravel-ide-helper/pull/1185#issuecomment-831029353 --- .github/workflows/run-tests.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 05b0270..f5d65af 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -21,12 +21,8 @@ jobs: matrix: php: [8.0, 7.4, 7.3] laravel: [8.*] - dependency-version: [prefer-lowest, prefer-stable] - exclude: - - php: 8.0 - dependency-version: prefer-lowest - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} + name: P${{ matrix.php }} - L${{ matrix.laravel }} steps: - name: Checkout code @@ -44,7 +40,7 @@ jobs: composer remove vimeo/psalm --no-update --dev composer remove friendsofphp/php-cs-fixer --no-update --dev composer require "laravel/framework:${{ matrix.laravel }}" --no-update --no-progress - composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress + composer update --prefer-dist --no-progress - name: Execute Unit Tests run: composer test-ci