Uploading Specific Vendor files with Laravel's Envoyer

给你一囗甜甜゛ 提交于 2019-12-05 03:32:21

As mentioned in the comments on the question itself this is a pretty dangerous situation and you'd be much better served extending the package or forking it and then using that.

That being said it does look like you have a git issue: Based solely on the error you're getting the problem appears as if it's less that you aren't including the module files (have you actually checked that the module files are present?) and more that /home/forge/default/bootstrap/../vendor/autoload.php isn't present. Based on the .gitignore you provide this is correct (You ignore all files in vendor--/vendor/*--and only include back the directory itself--!/vendor--and the subdirectory/file misd--!/vendor/misd). You either need to include /vendor/autoload.php--!/vendor/autoload.php--or you need to generate it after the fact some how.

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