Skip to content

Commit 33a19c6

Browse files
authored
Merge pull request #82 from gofish543/master
2 parents e27c7b9 + 2d4600d commit 33a19c6

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-dump-server` will be documented in this file
44

5+
## Unreleased
6+
7+
- laravel 9 support
8+
59
## 1.0.0 - 2018-07-09
610

711
- initial release

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
],
1818
"require": {
1919
"php": ">=7.2.5",
20-
"illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
21-
"illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
22-
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
23-
"symfony/var-dumper": "^5.0"
20+
"illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0",
21+
"illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0",
22+
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0",
23+
"symfony/var-dumper": "^5.0|^6.0"
2424
},
2525
"require-dev": {
2626
"larapack/dd": "^1.0",

src/DumpServerCommand.php

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace BeyondCode\DumpServer;
44

55
use Illuminate\Console\Command;
6-
76
use InvalidArgumentException;
87
use Symfony\Component\VarDumper\Cloner\Data;
98
use Symfony\Component\Console\Style\SymfonyStyle;

0 commit comments

Comments
 (0)