require(vendor/autoload.php): failed to open stream

前端 未结 16 1457
梦毁少年i
梦毁少年i 2020-11-29 18:02

I know that this issue has been posted many times, but for me it seems to be a different problem.

Indeed, this error

Warning: require(vendor/autol

16条回答
  •  难免孤独
    2020-11-29 18:13

    There will be a directory called "vendor" that needs to be in your root directory if you have a cloned repository and trying to set up that time this type of error occurring.

    ".gitingore" file has written code to not include vendor directory on GIT so after cloning GIT your project facing the issue of missing vendor directory.

    Once you add vendor directory your project will start working again.

提交回复
热议问题