File tree 3 files changed +19
-7
lines changed
3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,31 @@ name: run-tests
2
2
3
3
on :
4
4
push :
5
- branches : [main]
5
+ branches :
6
+ - main
6
7
pull_request :
7
- branches : [main]
8
+ branches :
9
+ - main
8
10
9
11
jobs :
10
12
test :
11
13
runs-on : ${{ matrix.os }}
14
+
12
15
strategy :
13
16
fail-fast : false
14
17
matrix :
15
18
os : [ubuntu-latest, windows-latest]
16
19
php : [8.3, 8.2, 8.1]
17
- laravel : [10.*]
20
+ laravel : [' 10.*', '11.*' ]
18
21
dependency-version : [prefer-stable]
19
22
include :
20
23
- laravel : 10.*
21
24
testbench : 8.*
25
+ - laravel : 11.*
26
+ testbench : 9.*
27
+ exclude :
28
+ - laravel : 11.*
29
+ php : 8.1
22
30
23
31
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
24
32
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes will be documented in this file
4
4
5
- ## 1.1.0 - 2024-01-007
5
+ ## 1.2.0 - 2024-02-27
6
+
7
+ - Add Laravel 11 support
8
+
9
+ ## 1.1.0 - 2024-01-07
6
10
7
11
- Add PHP 8.3 compatibility
8
12
Original file line number Diff line number Diff line change 22
22
],
23
23
"require" : {
24
24
"php" : " ~8.1.0 || ~8.2.0 || ~8.3.0" ,
25
- "illuminate/contracts" : " ^10.0"
25
+ "illuminate/contracts" : " ^10.0 || ^11.0 "
26
26
},
27
27
"require-dev" : {
28
- "nunomaduro/collision" : " ^7.8" ,
29
- "orchestra/testbench" : " ^8.0" ,
28
+ "nunomaduro/collision" : " ^7.8 || ^8.0 " ,
29
+ "orchestra/testbench" : " ^8.0 || ^9.0 " ,
30
30
"phpunit/phpunit" : " ^10.0"
31
31
},
32
32
"autoload" : {
You can’t perform that action at this time.
0 commit comments