1

在 Laravel 5.1 中安装 Laravelcollective/HTML 时出现问题安装 laravelcollective/html 文档。首先,我通过 Composer 安装:

composer require illuminate/html

信息: Using version ~5.0 for illuminate/html ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev)

但它是 5.0 版,所以删除它。

composer remove illuminate/html

并安装 5.1 版

"require": {
    "laravelcollective/html": "5.1.*"
}

接下来,从终端更新 Composer:

composer update

接下来,将您的新提供者添加到 config/app.php 的提供者数组中:

  'providers' => [
    // ...
    Collective\Html\HtmlServiceProvider::class,
    // ...
  ],

最后,在 config/app.php 的 aliases 数组中添加两个类别名:

  'aliases' => [
    // ...
      'Form' => Collective\Html\FormFacade::class,
      'Html' => Collective\Html\HtmlFacade::class,
    // ...
  ],

和消息错误:

 FatalErrorException in ProviderRepository.php line 146:
 Class 'Collective\Html\HtmlServiceProvider' not found
4

3 回答 3

3

在我运行 composer update 之前,我以某种方式将以下内容添加到 config/app.php 中,因此它产生了与您遇到的相同的错误。

在进行作曲家更新之前不要添加以下内容。

'providers' => [
    // ...
    Collective\Html\HtmlServiceProvider::class,
    // ...
  ],

  'aliases' => [
    // ...
      'Form' => Collective\Html\FormFacade::class,
      'Html' => Collective\Html\HtmlFacade::class,
    // ...
  ],
于 2015-08-18T19:12:21.873 回答
0

我有一个解决方案。您可以通过 composer 在下面运行此命令。它将安装laravelcollective/html

composer require laravelcollective/html
于 2016-02-15T19:32:09.760 回答
0

我的问题是我有一个缓存的配置文件,我无法重新缓存它,因为它是通过工匠缓存的,而工匠正在抛出错误。

解决方案:

删除:

bootstrap/cache/config.php

composer update
于 2016-09-14T07:13:05.713 回答