公式のアップグレードガイド 5.1から5.2をフォローしています。最初のサブセクションは言う:
Laravel 5.2のベータリリースをインストールする場合、composer.jsonファイルに
"minimum-stability": "beta"
を追加します。Composer.jsonファイルを更新して、
laravel/framework 5.2.*
を指すようにします。Composer.jsonファイルのrequire-devセクションに
symfony/dom-crawler ~3.0
およびsymfony/css-selector ~3.0
を追加します。
さて、上記の変更を導入して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
エラーがスローされますafter更新が完了し、「自動ロードファイルの生成」が行われます。
何が問題なのでしょうか?
カスタムパッケージの問題ではなく、コアの問題のように見えます。アップグレードガイドを続行し、すべてが新しいフレームワークバージョンに適合するように調整された後でcomposer update
を実行する必要がありますか?
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から2つのサービスプロバイダーを削除します
Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
Illuminate\Routing\ControllerServiceProvider::class,
Config /の下のapp.phpファイルを更新すると、1つの問題が解決しましたが、bootstrap/cacheフォルダーの導入により、おそらく同じエラーが引き続き発生します。
キャッシュファイルを削除する前にcomposer updateを実行したため、同じエラーが発生し続けました。最初にbootstrap/cache/services.phpファイルを削除してください。
これには職人のコマンドがあるかもしれませんが、ドキュメントのこのステップを完全に逃しました。
私はここで解決策を見つけました:
https://laravel.com/docs/5.2/upgrade#upgrade-5.2.
サービスプロバイダー
Illuminate\Foundation\Providers\ArtisanServiceProviderは、app.php構成ファイルのサービスプロバイダーリストから削除する必要があります。
Illuminate\Routing\ControllerServiceProviderは、app.php構成ファイルのサービスプロバイダーリストから削除する必要があります。
bootstrap dump-autoloadを実行した後、packages.phpおよびconfig.phpをcomposerキャッシュフォルダーから削除します。