File tree 4 files changed +20
-15
lines changed
4 files changed +20
-15
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,16 @@ jobs:
16
16
fail-fast : false
17
17
matrix :
18
18
os : [ubuntu-latest, windows-latest]
19
- php : [8.4 , 8.3, 8.2 ]
20
- laravel : ['11.*', '10 .*']
19
+ php : [8.2 , 8.3, 8.4 ]
20
+ laravel : ['10.*', ' 11.*', '12 .*']
21
21
dependency-version : [prefer-stable]
22
22
include :
23
- - laravel : 11.*
24
- testbench : 9.*
25
23
- laravel : 10.*
26
24
testbench : 8.*
25
+ - laravel : 11.*
26
+ testbench : 9.*
27
+ - laravel : 12.*
28
+ testbench : 10.*
27
29
28
30
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
29
31
45
47
46
48
- name : Install dependencies
47
49
run : |
48
- composer require "laravel/framework :${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
50
+ composer require "illuminate/contracts :${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
49
51
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
50
52
51
53
- name : Execute tests
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to `laravel-route-statistics` will be documented in this fil
4
4
5
5
## Changes
6
6
7
+ ### 4.1.0 - 2025-02-17
8
+
9
+ - Add Laravel 12 support
10
+
7
11
### 4.0.0 - 2024-12-04
8
12
9
13
- Add PHP 8.4 compatibility
Original file line number Diff line number Diff line change 9
9
10
10
Log Laravel requests and responses for statistical purposes and optionally aggregate by hours/days/months for minimal db requirements.
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.* | 11.* | 8.1.* \| 8.2.* \| 8.3.* |
17
- | 4.* | 11.* | 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.* | 11.* | 8.1.* \| 8.2.* \| 8.3.* |
17
+ | 4.* | 11.* \| 12. * | 8.2.* \| 8.3.* \| 8.4.* |
18
18
19
19
## Description
20
20
Original file line number Diff line number Diff line change 23
23
"require" : {
24
24
"php" : " ~8.2.0 || ~8.3.0 || ~8.4.0" ,
25
25
"bilfeldt/laravel-request-logger" : " ^3.0" ,
26
- "illuminate/contracts" : " ^11.0 || ^10.0" ,
27
- "laravel/framework" : " ^11.0 || ^10.0"
26
+ "illuminate/contracts" : " ^10.0 || ^11.0 || ^12.0"
28
27
},
29
28
"require-dev" : {
30
29
"nunomaduro/collision" : " ^7.2 || ^8.0" ,
31
- "orchestra/testbench" : " ^8.0 || ^9.0" ,
32
- "phpunit/phpunit" : " ^10.0"
30
+ "orchestra/testbench" : " ^8.0 || ^9.0 || ^10.0 " ,
31
+ "phpunit/phpunit" : " ^10.0 || ^11.5.3 "
33
32
},
34
33
"autoload" : {
35
34
"psr-4" : {
You can’t perform that action at this time.
0 commit comments