mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
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
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user