File tree Expand file tree Collapse file tree 3 files changed +23
-11
lines changed Expand file tree Collapse file tree 3 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,21 @@ jobs:
13
13
fail-fast : true
14
14
matrix :
15
15
os : [ubuntu-latest, windows-latest]
16
- php : [7.4 , 8.0]
17
- laravel : [8.*]
18
- stability : [prefer-lowest, prefer-stable]
16
+ php : [8.1 , 8.0, 7.4 ]
17
+ laravel : [9.*, 8.*]
18
+ dependency-version : [prefer-stable]
19
19
include :
20
+ - laravel : 9.*
21
+ testbench : 7.*
20
22
- laravel : 8.*
21
- testbench : ^6.6
23
+ testbench : 6.*
24
+ exclude :
25
+ - laravel : 7.*
26
+ php : 8.1
27
+ - laravel : 9.*
28
+ php : 7.4
22
29
23
- name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
30
+ name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
24
31
25
32
steps :
26
33
- name : Checkout code
41
48
- name : Install dependencies
42
49
run : |
43
50
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
44
- composer update --${{ matrix.stability }} --prefer-dist --no-interaction
51
+ composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
45
52
46
53
- name : Execute tests
47
54
run : vendor/bin/pest
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-request-logger ` will be documented in this file.
4
4
5
+ ## v1.1.0 - 2022-01-28
6
+
7
+ - Add Laravel 9 support
8
+ - Add PHP 8.1 support
9
+
5
10
## v1.0.2 - 2022-01-11
6
11
7
12
- Exclude the parameter api_token per default from all logs (added to config) #17
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^7.4| ^8.0" ,
19
+ "php" : " ^7.4 || ^8.0" ,
20
20
"spatie/laravel-package-tools" : " ^1.4.3" ,
21
- "illuminate/contracts" : " ^8.50" ,
21
+ "illuminate/contracts" : " ^8.50 || ^9.0 " ,
22
22
"ext-json" : " *"
23
23
},
24
24
"require-dev" : {
25
- "nunomaduro/collision" : " ^5.3" ,
26
- "nunomaduro/larastan" : " ^1.0" ,
27
- "orchestra/testbench" : " ^6.15" ,
25
+ "nunomaduro/collision" : " ^5.3 || ^6.0 " ,
26
+ "nunomaduro/larastan" : " ^1.0 || ^2.0 " ,
27
+ "orchestra/testbench" : " ^6.15 || ^7.0 " ,
28
28
"pestphp/pest" : " ^1.18" ,
29
29
"pestphp/pest-plugin-laravel" : " ^1.1" ,
30
30
"phpstan/extension-installer" : " ^1.1" ,
You can’t perform that action at this time.
0 commit comments