laravel怎么引用第三方通用类库啊!!!引用完后怎么调用啊?????

已邀请:

motecshine - 菜鸟

赞同来自:

composer.json

`"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"

"app/your_dir/test.php"
]
},`

hellosnow

赞同来自:

一般情况下是这样的,先在require里添加想要使用的第三方插件,然后composer update,之后在app/config/app.php中添加ServiceProvider和alias。

要回复问题请先登录注册