Skip to content

Commit 880dec3

Browse files
committed
Laravel 11 support
1 parent ece3761 commit 880dec3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
## [v1.1.2 (2024-02-16)](https://github.com/onlime/laravel-http-client-global-logger/compare/v1.1.1...v1.1.2)
66

77
- Feature | Support for trimming the response body by @pascalbaljet in #3
8+
- Laravel 11 support
89

910
## [v1.1.1 (2023-11-13)](https://github.com/onlime/laravel-http-client-global-logger/compare/v1.1.0...v1.1.1)
1011

@@ -22,13 +23,13 @@
2223

2324
## [v1.0.1 (2023-02-26)](https://github.com/onlime/laravel-http-client-global-logger/compare/v1.0.0...v1.0.1)
2425

26+
- Laravel 10 support, Require PHP 8.1
2527
- Drop Laravel 8 / PHP 8.0 support
2628
- Integrated `laravel/pint` as dev requirement for PHP style fixing
27-
- Support Laravel 10
2829

2930
## [v1.0.0 (2022-02-10)](https://github.com/onlime/laravel-http-client-global-logger/compare/v0.9.1...v1.0.0)
3031

31-
- Support Laravel 9
32+
- Laravel 9 support
3233

3334
## [v0.9.1 (2022-02-10)](https://github.com/onlime/laravel-http-client-global-logger/compare/v0.9...v0.9.1)
3435

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
"require": {
2929
"php": "^8.1",
3030
"guzzlehttp/guzzle": "^7.6",
31-
"illuminate/http": "^10.0",
32-
"illuminate/support": "^10.0",
31+
"illuminate/http": "^10.0|^11.0",
32+
"illuminate/support": "^10.0|^11.0",
3333
"monolog/monolog": "^3.0"
3434
},
3535
"require-dev": {
36-
"laravel/framework": "^10.0",
36+
"laravel/framework": "^10.0|^11.0",
3737
"laravel/pint": "^1.13",
38-
"orchestra/testbench": "^8.8",
38+
"orchestra/testbench": "^8.8|^9.0",
3939
"pestphp/pest": "^2.33",
4040
"pestphp/pest-plugin-arch": "^2.0",
4141
"pestphp/pest-plugin-laravel": "^2.0",

0 commit comments

Comments
 (0)