提问者:小点点

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


我遵循5.1到5.2的官方升级指南。第一小节说:

如果您正在安装Laravel 5.2的beta版,请将“最低稳定性”:“beta”添加到您的composer中。json文件。

更新你的作曲家。json文件指向laravel/framework 5.2*

添加symfony/dom-爬虫~3.0symfony/css-selector~3.0到composer.json文件的需要开发部分。

现在,在引入上述更改并运行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

更新完成后抛出错误,并发生“生成自动加载文件”。

可能有什么问题?

它看起来不像是一个定制的包问题,而是一个核心问题。我是否应该继续使用升级指南,并在所有内容都已调整以适应新的框架版本后运行composer update

使现代化

之后运行作曲家转储-自动加载不会抛出上述错误。不过,仍然令人困惑。


共3个答案

匿名用户

不再有照明\路由\控制器服务提供程序

如果我是你,我会比较我的应用程序项目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,

匿名用户

从配置/app.php中删除两个服务提供程序

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

匿名用户

在对现有项目从5.1更新到5.2的过程中,我们发现在删除提供程序的行之前和之后运行composer update

照明\路由\控件服务提供商::class照明\基金会\提供商\ArtisanService提供商::class

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

在之前运行将允许laravel下载和更新当前的框架库依赖项,然后在删除之后运行(composer能够顺利完成)

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