Skip to content

Commit

Permalink
Remove unsupported Illuminate packages
Browse files Browse the repository at this point in the history
* exclude unsupported combinations in test matrix
  • Loading branch information
patrickomeara committed Mar 12, 2024
1 parent aff164b commit c5f8a82
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,19 @@ jobs:
name: 'PHP: ${{ matrix.php }}; Laravel: ${{ matrix.laravel }}; Prefer: ${{ matrix.prefer }}'
strategy:
matrix:
php: ['8.1', '8.2']
laravel: ['^9.0', '^10.0', '^11.0']
php: ['8.1', '8.2', '8.3']
laravel: ['^10.0', '^11.0']
prefer: ['prefer-lowest', 'prefer-stable']
include:
- laravel: '^9.0'
testbench: '^7.0'
- laravel: '^10.0'
testbench: '^8.0'
- laravel: '^11.0'
testbench: '^9.0'
exclude:
- php: '8.3'
laravel: '^10.0'
- php: '8.1'
laravel: '^11.0'

steps:
- name: checkout code
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
},
"require": {
"php": "^8.1",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"illuminate/http": "^9.0 || ^10.0 || ^11.0"
"illuminate/support": "^10.0 || ^11.0",
"illuminate/http": "^10.0 || ^11.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4"
Expand Down

0 comments on commit c5f8a82

Please sign in to comment.