Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Laravel 5 Failed opening required bootstrap/../vendor/autoload.php

I have recently installed Laravel 5 via composer. I tried creating a new controller using artisan and I get the following error:
bootstrap/../vendor/autoload.php. Failed to open stream: No such file or directory. The "vendor" folder does not exist.

Am I missing something?
by

2 Answers

rahul07
Run composer with --no-scripts

composer update --no-scripts
This shall fix the issue. I tried this on Mac and Linux.
sandhya6gczb
Delete Vendor then composer install

Login / Signup to Answer the Question.