“vendor” folder missing after running “Composer Install”

只谈情不闲聊 提交于 2019-12-25 12:06:07

问题


I am currently trying to run on Vagrant/Homestead a Laravel Application that I pulled from Github. I connected it to the database, and run Composer Install, Composer Update inside the folder. When I try to access to it on the Browser I get the following error:

Warning: require(/home/vagrant/.../public/vendor/autoload.php): failed to open stream: No such file or directory in /home/vagrant/..../public/autoload.php on line 2

I navigated to the vendor folder and noticed that it was not created. Any ideas how to fix it?

The application runs in Laravel 4, and I got the following output from the terminal when I run Composer Install:

Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Nothing to install or update
Package herrera-io/json is abandoned, you should avoid using it. Use kherge/json instead.
Package kherge/version is abandoned, you should avoid using it. No replacement was suggested.
Package herrera-io/phar-update is abandoned, you should avoid using it. No replacement was suggested.
Package mjolnic/bootstrap-colorpicker is abandoned, you should avoid using it. Use itsjavi/bootstrap-colorpicker instead.

Generating autoload files

php artisan clear-compiled php artisan optimize Generating optimized class loader

Any ideas?


回答1:


Composer needs to be run from the root of your application, i.e. not from the public folder as your error seems to indicate.

You can first try running:

composer install --no-scripts

This command should list the packages that are being downloaded and installed. If the above works, you can then run:

php artisan optimize

This will create the autoload.php file that Laravel will use.




回答2:


I also experienced that, i solved the problem by creating a vendor/bin folder inside the Composer directory.

$PATH/users/*-system_name-*/AppData/Roaming/Composer 


来源:https://stackoverflow.com/questions/47186191/vendor-folder-missing-after-running-composer-install

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!