Class 'Illuminate\Notifications\NotificationServiceProvider' 未找到
Class 'Illuminate\Notifications\NotificationServiceProvider' not found
我正在将我的 Laravel 从 5.2 升级到 5.3,并且已经阅读了 https://laravel.com/docs/5.3/upgrade 上的文档,但是当我 运行 我的申请:
FatalErrorException in ProviderRepository.php line 146: Class
'Illuminate\Notifications\NotificationServiceProvider' not found
我已经在 config/app.php 中将 Illuminate\Notifications\NotificationServiceProvider 添加到提供者,并将 Illuminate\Support\Facades\Notification 添加到别名。我也试过:
composer dump-autoload
composer update --no-scripts
阻止 artisan 在被包含之前执行,但无济于事。
升级后需要运行composer install
Laravel。
我正在将我的 Laravel 从 5.2 升级到 5.3,并且已经阅读了 https://laravel.com/docs/5.3/upgrade 上的文档,但是当我 运行 我的申请:
FatalErrorException in ProviderRepository.php line 146: Class 'Illuminate\Notifications\NotificationServiceProvider' not found
我已经在 config/app.php 中将 Illuminate\Notifications\NotificationServiceProvider 添加到提供者,并将 Illuminate\Support\Facades\Notification 添加到别名。我也试过:
composer dump-autoload
composer update --no-scripts
阻止 artisan 在被包含之前执行,但无济于事。
升级后需要运行composer install
Laravel。