Skip to content

Commit 9e46f29

Browse files
authored
Merge pull request #60 from rawilk/laravel-11.x
Finish Laravel 11.x Compatibility Update
2 parents 3531dfd + cb7726d commit 9e46f29

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- 'phpunit.xml.dist'
88
- '.github/workflows/run-tests.yml'
99
- 'composer.json'
10+
pull_request:
11+
branches:
12+
- main
1013

1114
jobs:
1215
test:
@@ -15,11 +18,16 @@ jobs:
1518
fail-fast: true
1619
matrix:
1720
php: [8.3, 8.2, 8.1]
18-
laravel: [10.*]
21+
laravel: [11.*, 10.*]
1922
dependency-version: [prefer-lowest, prefer-stable]
2023
include:
2124
- laravel: 10.*
2225
testbench: 8.*
26+
- laravel: 11.*
27+
testbench: 9.*
28+
exclude:
29+
- laravel: 11.*
30+
php: 8.1
2331

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"require-dev": {
2828
"laravel/pint": "^1.2",
2929
"nunomaduro/larastan": "^2.6",
30-
"orchestra/testbench": "^8.0",
30+
"orchestra/testbench": "^8.0|^9.0",
3131
"pestphp/pest": "^2.10",
3232
"pestphp/pest-plugin-laravel": "^2.2",
3333
"spatie/laravel-ray": "^1.31"

0 commit comments

Comments
 (0)