Skip to content

Commit

Permalink
Merge branch 'feature/laravel-9-support'
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Dec 15, 2022
2 parents 105f802 + 2e5bd77 commit 8c00eef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,17 @@ jobs:
fail-fast: true
matrix:
php: [8.0, 8.1]
laravel: [8.*]
laravel: [8.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.1
laravel: 8.*
dependency-version: prefer-lowest
include:
- laravel: 8.*
testbench: 6.*
#Testing php 8.1 with Laravel 8.74 as its lowest
- php: 8.1
laravel: ^8.74
dependency-version: prefer-lowest
testbench: 6.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand All @@ -46,7 +43,6 @@ jobs:

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.0"
"laravel/framework": "^8.0|^9.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
Expand Down

0 comments on commit 8c00eef

Please sign in to comment.