Skip to content

Commit 02d9522

Browse files
committed
Support Laravel 10
1 parent fd7edb3 commit 02d9522

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
- Allow bindings to be null.
66
- Drop Laravel 8 / PHP 8.0 support
7-
- Integrated laravel/pint as dev requirement for PHP style fixing
7+
- Integrated `laravel/pint` as dev requirement for PHP style fixing
8+
- Support Laravel 10
89

910
## [v1.0.0 (2022-02-10)](https://github.com/onlime/laravel-sql-reporter/releases/tag/compare/v0.9.1...v1.0.0)
1011

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
],
1616
"require": {
1717
"php": "^8.1",
18-
"illuminate/support": "^9.0",
19-
"illuminate/filesystem": "^9.0",
20-
"illuminate/container": "^9.0",
18+
"illuminate/support": "^9.0|^10.0",
19+
"illuminate/filesystem": "^9.0|^10.0",
20+
"illuminate/container": "^9.0|^10.0",
2121
"nesbot/carbon": "^2.0"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "^9.5",
2525
"mockery/mockery": "^1.0",
26-
"laravel/framework": "^9.0",
27-
"laravel/pint": "^1.2"
26+
"laravel/framework": "^9.0|^10.0",
27+
"laravel/pint": "^1.5"
2828
},
2929
"autoload": {
3030
"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)