File tree Expand file tree Collapse file tree 4 files changed +19
-11
lines changed Expand file tree Collapse file tree 4 files changed +19
-11
lines changed Original file line number Diff line number Diff line change @@ -17,17 +17,21 @@ jobs:
17
17
matrix :
18
18
os : [ubuntu-latest, windows-latest]
19
19
php : [8.3, 8.2, 8.1]
20
- laravel : ['10.*', '11.*']
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 :
30
+ - laravel : 10.*
31
+ php : 8.1
28
32
- laravel : 11.*
29
33
php : 8.1
30
- - laravel : 10 .*
34
+ - laravel : 12 .*
31
35
php : 8.1
32
36
33
37
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
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 @@ -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.6.0 - 2025-02-17
21
+
22
+ - Add Laravel 12 support
23
+
20
24
### 3.5.0 - 2025-02-11
21
25
22
26
- Move registration of event listeners to the main service provider and remove the dedicated EventServiceProvider.
Original file line number Diff line number Diff line change 9
9
10
10
Zero configuration logging of Requests and Responses to database or custom drivers in Laravel applications - no more issues debugging customer support requests.
11
11
12
- | Version | Laravel | PHP |
13
- | ---------| -------------| ----------------------------------|
14
- | 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* |
15
- | 2.* | 10.* | 8.1.* \| 8.2.* |
16
- | 3.* | 10.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
12
+ | Version | Laravel | PHP |
13
+ | ---------| ---------------------- | ----------------------------------|
14
+ | 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* |
15
+ | 2.* | 10.* | 8.1.* \| 8.2.* |
16
+ | 3.* | 10.* \| 11. * \| 12. * | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
17
17
18
18
## Installation
19
19
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 || ~8.4.0" ,
24
- "illuminate/contracts" : " ^10.0 || ^11.0" ,
24
+ "illuminate/contracts" : " ^10.0 || ^11.0 || ^12.0 " ,
25
25
"ext-json" : " *" ,
26
26
"bilfeldt/laravel-correlation-id" : " ^1.0"
27
27
},
28
28
"require-dev" : {
29
29
"nunomaduro/collision" : " ^7.2 || ^8.0" ,
30
- "orchestra/testbench" : " ^8.0 || ^9.0" ,
31
- "phpunit/phpunit" : " ^10.0" ,
30
+ "orchestra/testbench" : " ^8.0 || ^9.0 || ^10.0 " ,
31
+ "phpunit/phpunit" : " ^10.0 || ^11.5.3 " ,
32
32
"spatie/laravel-ray" : " ^1.32"
33
33
},
34
34
"autoload" : {
You can’t perform that action at this time.
0 commit comments