Search code examples
laravelclassloader

Laravel 4 class not found after doployment to production


Error:

Class 'App\Package\PackageServiceProvider' not found

After moving my laravel directories to my server. The app is under psr-0.

The same files are found and working locally without any errors.

I tried to update composer with and without dump but nothing changes.

Why does that happen?


Solution

  • By default, the vendor directory is not checked into your git repository. So, just run composer install on your server and it should take care of the rest.