如何在laravel5 include自己的类库

一般都是通过package来安装,如果非package库呢?比如支付宝的库文件,phpquery这样的,或自己写的,改怎么引用呢?
已邀请:

JasonLaravel

赞同来自:

在composer.json 的autoload 下添加
“autoload”:{ “classmap”:[“app/commands”]}

自动加载app/commands 目录下的所有文件

要回复问题请先登录注册