From 2d4600d7cc3dd5e3d5b8c8a248e9e59243b3d4a1 Mon Sep 17 00:00:00 2001 From: Nicholas Dykhuizen Date: Sat, 29 Jan 2022 12:29:07 -0700 Subject: [PATCH] Laravel 9 and Symfony Var-Dumper 6 Support --- CHANGELOG.md | 4 ++++ composer.json | 8 ++++---- src/DumpServerCommand.php | 1 - 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8538b13..d0a478e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-dump-server` will be documented in this file +## Unreleased + +- laravel 9 support + ## 1.0.0 - 2018-07-09 - initial release diff --git a/composer.json b/composer.json index 7da644e..7e99fe8 100644 --- a/composer.json +++ b/composer.json @@ -17,10 +17,10 @@ ], "require": { "php": ">=7.2.5", - "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0", - "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0", - "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0", - "symfony/var-dumper": "^5.0" + "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0", + "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0", + "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0", + "symfony/var-dumper": "^5.0|^6.0" }, "require-dev": { "larapack/dd": "^1.0", diff --git a/src/DumpServerCommand.php b/src/DumpServerCommand.php index e90116c..25e7d8d 100644 --- a/src/DumpServerCommand.php +++ b/src/DumpServerCommand.php @@ -3,7 +3,6 @@ namespace BeyondCode\DumpServer; use Illuminate\Console\Command; - use InvalidArgumentException; use Symfony\Component\VarDumper\Cloner\Data; use Symfony\Component\Console\Style\SymfonyStyle;