Friday, 12 August 2016

javascript - Class 'NunoMaduroCollisionAdaptersLaravelCollisionServiceProvider' not found

When trying to install composer in laravel project get this error.





Illuminate\Foundation\ComposerScripts::postAutoloadDump
@php artisan package:discover
In ProviderRepository.php line 208:



Class 'NunoMaduro\Collision\Adapters\Laravel\CollisionServiceProvider' not
found
Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...