美文网首页
laravel添加第三方库

laravel添加第三方库

作者: 路过的人儿 | 来源:发表于2017-12-21 10:22 被阅读0次

修改composer.json中的autoload配置


"autoload": {

"classmap": [

"database"

],

"files":[

"vendor/alisms/aliyun-php-sdk-core/Config.php",

//假设三方类放在vendor/opensearch/目录下,则引入其中一个文件,或者autoload的文件类即可

"vendor/opensearch/OpenSearch/Autoloader/Autoloader.php",

"app/common.php"

],

"psr-4": {

"App\\":"app/"

}

},

相关文章

网友评论

      本文标题:laravel添加第三方库

      本文链接:https://www.haomeiwen.com/subject/hevowxtx.html