将 Laravel 5.1 升级到 5.2 时出现致命错误

Fatal error while upgrading Laravel 5.1 to 5.2

我正在关注官方 upgrade guide 从 5.1 到 5.2。第一小节说:

If you are installing a beta release of Laravel 5.2, add "minimum-stability": "beta" to your composer.json file.

Update your composer.json file to point to laravel/framework 5.2.*.

Add symfony/dom-crawler ~3.0 and symfony/css-selector ~3.0 to the require-dev section of your composer.json file.

现在,在我引入上述更改和 运行 composer update 之后,我得到以下错误:

PHP Fatal error:  Class 'Illuminate\Routing\ControllerServiceProvider' not found 
in /home/vagrant/Code/myproject/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php on line 146

[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Illuminate\Routing\ControllerServiceProvider' not found

[RuntimeException]
Error Output: PHP Fatal error:  Class 'Illuminate\Routing\ControllerServiceProvider' not found in /home/vagrant/Code/myproject/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php on line 146

更新完成后 抛出错误,"Generating autoload files" 发生。

可能有什么问题?

这不像是自定义包问题,而是核心问题。我是否应该继续升级指南和 运行 composer update 在所有内容都已调整以适应新框架版本之后?

更新

运行 composer dump-autoload 之后 不会抛出上述错误 。不过,仍然令人困惑。

没有Illuminate\Routing\ControllerServiceProvider了。

如果我是你,我会将我的应用程序项目与 https://github.com/laravel/laravel/commits/develop 进行比较,例如,如果你查看 https://github.com/laravel/laravel/blob/develop/config/app.php,你将看到 Laravel 5.2 的默认提供商:

Illuminate\Auth\AuthServiceProvider::class,
Illuminate\Broadcasting\BroadcastServiceProvider::class,
Illuminate\Bus\BusServiceProvider::class,
Illuminate\Cache\CacheServiceProvider::class,
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
Illuminate\Cookie\CookieServiceProvider::class,
Illuminate\Database\DatabaseServiceProvider::class,
Illuminate\Encryption\EncryptionServiceProvider::class,
Illuminate\Filesystem\FilesystemServiceProvider::class,
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
Illuminate\Hashing\HashServiceProvider::class,
Illuminate\Mail\MailServiceProvider::class,
Illuminate\Pagination\PaginationServiceProvider::class,
Illuminate\Pipeline\PipelineServiceProvider::class,
Illuminate\Queue\QueueServiceProvider::class,
Illuminate\Redis\RedisServiceProvider::class,
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
Illuminate\Session\SessionServiceProvider::class,
Illuminate\Translation\TranslationServiceProvider::class,
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
/*
 * Application Service Providers...
 */
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,

在将现有项目从 5.1 更新到 5.2 时,我们发现 运行 composer update 在删除供应商行

之前和之后

Illuminate\Routing\ControllerServiceProvider::class Illuminate\Foundation\Providers\ArtisanServiceProvider::class

是完成 laravel 更新的必要顺序。

运行 之前将允许 laravel 下载和更新当前的框架库依赖项,然后 运行 在删除之后(作曲家能够毫无问题地完成)

我们还发现.env 文件中的任何值都不能有空格,必须用引号括起来才能工作。

更新 config/ 下的 app.php 文件解决了一个问题,但随着 bootstrap/cache 文件夹的引入,您可能会继续 运行 进入同样的错误。

我 运行 作曲家更新 在删除缓存文件之前,我一直遇到同样的错误。确保先删除 bootstrap/cache/services.php 文件。

可能有一个 artisan 命令,但我完全错过了文档中的这一步。

从config/app中删除两个服务提供商。php

Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
 Illuminate\Routing\ControllerServiceProvider::class,

我在这里找到了解决方案:

https://laravel.com/docs/5.2/upgrade#upgrade-5.2.0

服务提供商

Illuminate\Foundation\Providers\ArtisanServiceProvider 应该从 app.php 配置文件中的服务提供商列表中删除。

Illuminate\Routing\ControllerServiceProvider 应该从 app.php 配置文件中的服务提供商列表中删除。

从 bootstrap 缓存文件夹中删除 packages.php 和 config.php 在 运行 composer dump-autoload

之后