Skip to content

Commit 4382b61

Browse files
committed
Use standard Symfony dumper classes
Allow Laravel 5.7
1 parent ae2bd1e commit 4382b61

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

composer.json

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

src/Dumper.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
namespace BeyondCode\DumpServer;
44

5-
use Illuminate\Support\Debug\HtmlDumper;
65
use Symfony\Component\VarDumper\Cloner\VarCloner;
76
use Symfony\Component\VarDumper\Dumper\CliDumper;
7+
use Symfony\Component\VarDumper\Dumper\HtmlDumper;
88
use Symfony\Component\VarDumper\Server\Connection;
99

10-
class Dumper extends \Illuminate\Support\Debug\Dumper
10+
class Dumper
1111
{
1212
/** @var Connection */
1313
private $connection;

0 commit comments

Comments
 (0)