如何在laravel 5.1中将服务提供者添加到config / app providers数组中

时间:2015-06-11 14:30:42

标签: laravel laravel-5

我已经安装了图片中显示的这些包:

enter image description here

并在提供者数组中添加这些行

enter image description here

但是当我运行此命令时出现此错误!!

enter image description here

laravel 5.1中是否发生了添加包服务的变化?

我按照github repo中提到的说明进行操作。但得到了同样的错误。

2 个答案:

答案 0 :(得分:1)

https://laravel.com/docs/master/providers

只需阅读此文档即可。 假设: 我需要这样做: - 将程序包的ServiceProvider添加到config / app.php文件中的提供程序列表

'商' =>阵列(     ' Serverfireteam \博客\ BlogServiceProvider' )

然后,我会在

中这样做

'商' => [

    /*
    *Added by Amit for the blog
    */
    Serverfireteam\Blog\BlogServiceProvider::class,

    /*
     * Laravel Framework Service Providers...
     */

答案 1 :(得分:0)

关注documentation。它表示首先应将wemersonjanuario/laravelpdf添加到composer.json

{
  "require": {            
    "wemersonjanuario/laravelpdf": "1.0.*"
  }
}

这可以通过运行:

来完成
composer require wemersonjanuario/laravelpdf