File tree 4 files changed +19
-11
lines changed
4 files changed +19
-11
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,23 @@ jobs:
16
16
fail-fast : false
17
17
matrix :
18
18
os : [ubuntu-latest, windows-latest]
19
- php : [8.4 , 8.3 , 8.2 , 8.1 ]
20
- laravel : ['10.*', '11.*']
19
+ php : [8.1 , 8.2 , 8.3 , 8.4 ]
20
+ laravel : ['10.*', '11.*', '12.*' ]
21
21
dependency-version : [prefer-stable]
22
22
include :
23
23
- laravel : 10.*
24
24
testbench : 8.*
25
25
- laravel : 11.*
26
26
testbench : 9.*
27
+ - laravel : 12.*
28
+ testbench : 10.*
27
29
exclude :
28
- - laravel : 11.*
29
- php : 8.1
30
30
- laravel : 10.*
31
31
php : 8.4
32
+ - laravel : 11.*
33
+ php : 8.1
34
+ - laravel : 12.*
35
+ php : 8.1
32
36
33
37
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
34
38
50
54
51
55
- name : Install dependencies
52
56
run : |
53
- composer require "laravel/framework :${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
57
+ composer require "illuminate/contracts :${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
54
58
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
55
59
56
60
- name : Execute tests
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.4.0 - 2025-02-17
6
+
7
+ - Add Laravel 12 support
8
+
5
9
## 1.3.0 - 2024-12-04
6
10
7
11
- Add PHP 8.4 support
Original file line number Diff line number Diff line change 9
9
10
10
Create request Correlation-IDs via middleware and pass both this globally unique ` Correlation-ID ` and any user provided ` Request-ID ` to the global log context.
11
11
12
- | Version | Laravel | PHP |
13
- | ---------| --------------| ----------------------------------|
14
- | 1.* | 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
12
+ | Version | Laravel | PHP |
13
+ | ---------| ---------------------- | ----------------------------------|
14
+ | 1.* | 10.* \| 11.* \| 12. * | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
15
15
16
16
## Motivation
17
17
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 || ~8.4.0" ,
25
- "illuminate/contracts" : " ^10.0 || ^11.0"
25
+ "illuminate/contracts" : " ^10.0 || ^11.0 || ^12.0 "
26
26
},
27
27
"require-dev" : {
28
28
"nunomaduro/collision" : " ^7.8 || ^8.0" ,
29
- "orchestra/testbench" : " ^8.0 || ^9.0" ,
30
- "phpunit/phpunit" : " ^10.0"
29
+ "orchestra/testbench" : " ^8.0 || ^9.0 || ^10.0 " ,
30
+ "phpunit/phpunit" : " ^10.0 || ^11.0 "
31
31
},
32
32
"autoload" : {
33
33
"psr-4" : {
You can’t perform that action at this time.
0 commit comments