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;