soberwp / controller

Composer package to enable a controller when using Blade with Sage 9
MIT License
368 stars 43 forks source link

Class 'Illuminate\Support\Debug\Dumper' not found #98

Closed codepuncher closed 5 years ago

codepuncher commented 6 years ago

With Illuminate\Support being updated to 5.7.x, we lose the Debug namespace and classes. Looks like they've replaced it with Symfony Dump Server https://laravel.com/docs/5.7/releases.

Take this as a note for those that come across this issue until it is resolved.

darrenjacoby commented 6 years ago

@codepuncher thanks for the heads up. I will take a look at changing.

Log1x commented 5 years ago
composer require symfony/var-dumper --dev

or follow Sage's dependency updates on illuminate/support. I believe ^5.7 does not require symfony/var-dumper to be installed independently and it should work out the box as it did before.

All in all, this issue can be closed.

darrenjacoby commented 5 years ago

Thanks @Log1x