LaravelDaily / QuickLMS

Simple Learning Management System based on Laravel 5.4.
147 stars 97 forks source link

Class 'Unisharp\Laravelfilemanager\LaravelFilemanagerServiceProvider' not found #7

Open gdsbond opened 6 years ago

gdsbond commented 6 years ago

I am getting this issue and Class 'Unisharp\Laravelfilemanager\LaravelFilemanagerServiceProvider' not found on line 208 in ProviderRepository.php

MehranLabour commented 5 years ago

@gdsbond If you are on Windows, edit your php.ini file and uncomment these two lines: extension=php_mbstring.dll extension=php_exif.dll

hope it could help :)

ouladck commented 5 years ago

The namespace has been changed so you should remove the package and reinstall it again. then use the now namespace in config/app.php folder:

UniSharp\LaravelFilemanager\LaravelFilemanagerServiceProvider::class,
nklatt commented 4 years ago

This just happened to me updating an old install and the cure was to rm -rf vendor, change config/app.php where it was Unisharp/Laravelfilemanager to UniSharp/LaravelFilemanager (note two changes of case), and then composer install.