File tree 4 files changed +39
-27
lines changed
4 files changed +39
-27
lines changed Original file line number Diff line number Diff line change 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 : ['9.*', '10.*', '11.*']
19
+ php : [8.1 , 8.2 , 8.3 , 8.4 ]
20
+ laravel : ['9.*', '10.*', '11.*', '12.*' ]
21
21
dependency-version : [prefer-stable]
22
22
include :
23
23
- laravel : 9.*
@@ -26,13 +26,17 @@ jobs:
26
26
testbench : 8.*
27
27
- laravel : 11.*
28
28
testbench : 9.*
29
+ - laravel : 12.*
30
+ testbench : 10.*
29
31
exclude :
30
- - laravel : 11.*
31
- php : 8.1
32
- - laravel : 10.*
33
- php : 8.4
34
32
- laravel : 10.*
35
33
php : 8.3
34
+ - laravel : 10.*
35
+ php : 8.4
36
+ - laravel : 11.*
37
+ php : 8.1
38
+ - laravel : 12.*
39
+ php : 8.1
36
40
37
41
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
38
42
Original file line number Diff line number Diff line change @@ -55,63 +55,71 @@ The following changes are required when updating:
55
55
56
56
## Changes
57
57
58
- ### 2.2.0
58
+ ### 2.4.0 - 2025-02-17
59
+
60
+ - Add Laravel 12 support
61
+
62
+ ### 2.3.0 - 2024-12-26
63
+
64
+ - Add PHP 8.4 support
65
+
66
+ ### 2.2.0 - 2024-02-28
59
67
60
68
- Add Laravel 11 support
61
69
62
- ### 2.1.0
70
+ ### 2.1.0 - 2023-12-21
63
71
64
72
- Add PHP 8.3 support
65
73
66
- ### 2.0.0
74
+ ### 2.0.0 - 2023-02-14
67
75
68
76
- Minimum PHP requirement 8.1
69
77
- Add support for PHP 8.2
70
78
- Minimum Laravel requirement 9.0
71
79
- Add support for Laravel 10.*
72
80
73
- ### 1.3.0
81
+ ### 1.3.0 - 2023-01-18
74
82
75
83
- Added return types for better IDE completion by @shahruslan in #24
76
84
77
- ### 1.2.1
85
+ ### 1.2.1 - 2022-05-7
78
86
79
87
- Append instead of override when writign to a log file by @afiqiqmal in #21
80
88
- Add Prefix Config by @afiqiqmal in #20
81
89
82
- ### 1.2.0
90
+ ### 1.2.0 - 2022-02-10
83
91
84
92
- Add Laravel 9 support
85
93
86
- ### 1.1.0
94
+ ### 1.1.0 - 2021-12-19
87
95
88
96
- Implement new MessageAccessor class by @bilfeldt in #13
89
97
- Implement a new logWith-method + a LogAllFilter class and a NullLogger by @bilfeldt in #15
90
98
- Apply fixes from StyleCI by @bilfeldt in #11
91
99
- Apply fixes from StyleCI by @bilfeldt in #14
92
100
93
- ### 1.0.1
101
+ ### 1.0.1 - 2021-07-01
94
102
95
103
- Add unofficial support for Lumen
96
104
97
- ### 1.0.0
105
+ ### 1.0.0 - 2021-04-19
98
106
99
107
- Release first stable release
100
108
- Flatten configuration (breaking change)
101
109
102
- ### 0.3.0
110
+ ### 0.3.0 - 2021-04-05
103
111
104
112
- Add on-demand configuration array (breaking change)
105
113
- Fix evaluation of closures in ` logWhen ` macro
106
114
- Add environmental variables for filtering options
107
115
- Add new filtering option for enabling all logging
108
116
109
- ### 0.2.0
117
+ ### 0.2.0 - 2021-02-17
110
118
111
119
- Refactor configuration (breaking change)
112
120
- Add logging to a flysystem disk
113
121
- Bugfix: ` $context ` not being passed down when using request macros
114
122
115
- ### 0.1.0
123
+ ### 0.1.0 - 2021-02-15
116
124
117
125
- initial release
Original file line number Diff line number Diff line change 8
8
9
9
An easy yet very flexible logger for the Laravel HTTP Client.
10
10
11
- | Version | Laravel | PHP |
12
- | ---------| ---------------------| ----------------------------------|
13
- | 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* |
14
- | 2.* | 9.* \| 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
11
+ | Version | Laravel | PHP |
12
+ | ---------| ----------------------------- | ----------------------------------|
13
+ | 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* |
14
+ | 2.* | 9.* \| 10.* \| 11.* \| 12. * | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
15
15
16
16
## Installation
17
17
Original file line number Diff line number Diff line change 20
20
}
21
21
],
22
22
"require" : {
23
- "php" : " ~8.4 .0 | ~8.3 .0 | ~8.2 .0 | ~8.1 .0" ,
23
+ "php" : " ~8.1 .0 | ~8.2 .0 | ~8.3 .0 | ~8.4 .0" ,
24
24
"ext-json" : " *" ,
25
25
"guzzlehttp/guzzle" : " ^7.2" ,
26
- "illuminate/http" : " ^9.0 || ^10.0 || ^11.0" ,
27
- "illuminate/support" : " ^9.0 || ^10.0 || ^11.0" ,
26
+ "illuminate/http" : " ^9.0 || ^10.0 || ^11.0 || ^12.0 " ,
27
+ "illuminate/support" : " ^9.0 || ^10.0 || ^11.0 || ^12.0 " ,
28
28
"spatie/laravel-package-tools" : " ^1.1"
29
29
},
30
30
"require-dev" : {
31
- "orchestra/testbench" : " ^7.0 || ^8.0 || ^9.0" ,
32
- "phpunit/phpunit" : " ^9.5.10 || ^10.0" ,
31
+ "orchestra/testbench" : " ^7.0 || ^8.0 || ^9.0 || ^10.0 " ,
32
+ "phpunit/phpunit" : " ^9.5.10 || ^10.0 || ^11.0 " ,
33
33
"timacdonald/log-fake" : " ^2.0"
34
34
},
35
35
"autoload" : {
You can’t perform that action at this time.
0 commit comments