Skip to content

Commit 6a78232

Browse files
committed
Support Laravel 10
1 parent 91f7e89 commit 6a78232

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Drop Laravel 8 / PHP 8.0 support
66
- Integrated `laravel/pint` as dev requirement for PHP style fixing
7+
- Support Laravel 10
78

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

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
"require": {
2929
"php": "^8.1",
3030
"guzzlehttp/guzzle": "^7.5",
31-
"illuminate/http": "^9.0",
32-
"illuminate/support": "^9.0",
31+
"illuminate/http": "^9.0|^10.0",
32+
"illuminate/support": "^9.0|^10.0",
3333
"monolog/monolog": "^2.0"
3434
},
3535
"require-dev": {
36-
"laravel/framework": "^9.0",
37-
"laravel/pint": "^1.2"
36+
"laravel/framework": "^9.0|^10.0",
37+
"laravel/pint": "^1.5"
3838
},
3939
"autoload": {
4040
"psr-4": {

pint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"binary_operator_spaces": false,
88
"concat_space": false,
99
"no_unused_imports": false,
10+
"phpdoc_separation": false,
1011
"Laravel/laravel_phpdoc_alignment": false,
11-
"Laravel/laravel_phpdoc_separation": false,
1212
"modernize_strpos": true
1313
},
1414
"exclude": [

0 commit comments

Comments
 (0)