Skip to content

Commit

Permalink
Merge pull request #60 from rawilk/laravel-11.x
Browse files Browse the repository at this point in the history
Finish Laravel 11.x Compatibility Update
  • Loading branch information
rawilk authored Mar 10, 2024
2 parents 3531dfd + cb7726d commit 9e46f29
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- 'phpunit.xml.dist'
- '.github/workflows/run-tests.yml'
- 'composer.json'
pull_request:
branches:
- main

jobs:
test:
Expand All @@ -15,11 +18,16 @@ jobs:
fail-fast: true
matrix:
php: [8.3, 8.2, 8.1]
laravel: [10.*]
laravel: [11.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"require-dev": {
"laravel/pint": "^1.2",
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^8.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.10",
"pestphp/pest-plugin-laravel": "^2.2",
"spatie/laravel-ray": "^1.31"
Expand Down

0 comments on commit 9e46f29

Please sign in to comment.