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 @@ -17,6 +17,10 @@ No breaking changes. The only changes are to the development dependencies used f
17
17
18
18
## Changes
19
19
20
+ ### 3.2.0
21
+
22
+ - Add Laravel 11 compatibility
23
+
20
24
### 3.1.0
21
25
22
26
- Add PHP 8.3 compatibility
Original file line number Diff line number Diff line change 21
21
],
22
22
"require" : {
23
23
"php" : " ~8.1.0 || ~8.2.0 || ~8.3.0" ,
24
- "illuminate/contracts" : " ^10.0" ,
24
+ "illuminate/contracts" : " ^10.0 || ^11.0 " ,
25
25
"ext-json" : " *" ,
26
26
"bilfeldt/laravel-correlation-id" : " ^1.0"
27
27
},
28
28
"require-dev" : {
29
- "nunomaduro/collision" : " ^7.2" ,
30
- "orchestra/testbench" : " ^8.0" ,
29
+ "nunomaduro/collision" : " ^7.2 || ^8.0 " ,
30
+ "orchestra/testbench" : " ^8.0 || ^9.0 " ,
31
31
"phpunit/phpunit" : " ^10.0" ,
32
32
"spatie/laravel-ray" : " ^1.32"
33
33
},
58
58
}
59
59
}
60
60
},
61
- "minimum-stability" : " stable " ,
61
+ "minimum-stability" : " dev " ,
62
62
"prefer-stable" : true
63
63
}
You can’t perform that action at this time.
0 commit comments