Skip to content

Commit c174224

Browse files
committed
Added laravel 11 to github actions
1 parent 49370c7 commit c174224

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

Diff for: .github/workflows/unittests.yml

+17
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,23 @@ jobs:
3232
laravel: 10.*
3333
testbench: 8.*
3434
composer-flag: '--prefer-lowest'
35+
# Laravel 11.*
36+
- php: 8.2
37+
laravel: 11.*
38+
testbench: 9.*
39+
composer-flag: '--prefer-stable'
40+
- php: 8.3
41+
laravel: 11.*
42+
testbench: 9.*
43+
composer-flag: '--prefer-stable'
44+
- php: 8.2
45+
laravel: 11.*
46+
testbench: 9.*
47+
composer-flag: '--prefer-lowest'
48+
- php: 8.2
49+
laravel: 11.*
50+
testbench: 9.*
51+
composer-flag: '--prefer-lowest'
3552
runs-on: ubuntu-latest
3653

3754
steps:

Diff for: composer.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,7 @@
5353
},
5454
"config": {
5555
"sort-packages": true
56-
}
56+
},
57+
"minimum-stability": "dev",
58+
"prefer-stable": true
5759
}

0 commit comments

Comments
 (0)