Laravel,如何在没有作曲家的情况下手动安装包
想在没有 composer 的情况下手动安装 Laravel-Excel (Maatwebsite) 包,但我不知道如何.
Wanted to install Laravel-Excel (Maatwebsite) package manually without composer, but I dont know how.
为什么?因为我在其他人设置的免费托管服务器中有一个 laravel 项目,我只能使用 Filezilla 来编辑/下载/上传代码.
Why? Because I have a laravel project in a free hosting server setup by other guy, and I can only access using Filezilla to edit/download/upload the codes.
如果只有 Filezilla 允许使用composer update"的命令提示符,那就更容易了.
If only Filezilla allow a command prompt that could use "composer update", then it will be easier.
推荐答案
- 将包添加到供应商文件夹.您可以使用 filezilla 上传它
- 在vendorcomposerautoload_namespaces.php 中添加引用
- 在vendorcomposerautoload_psr4.php 中添加引用
来源laravel.io
相关文章