我正在关注这个tutorial以正确安装Laravel,我就在第2部分开始之前。需要运行的命令php artisan serve
消除了以下错误:
PHP致命错误:第123行的/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php中找不到类'Illuminate \ Remote \ RemoteServiceProvider' {“error”:{“type”:“Symfony \ Component \ Debug \ Exception \ FatalErrorException”,“message”:“Class'LIuminate \ Remote \ RemoteServiceProvider'not found”,“file”:“/ vendor / laravel / framework /src/Illuminate/Foundation/ProviderRepository.php”, “行”:123}}
第123行如下所示:
public function createProvider(Application $app, $provider)
{
return new $provider($app); // This is line 123
}
我以前遇到过这个问题并通过删除composer.json
的“脚本”部分来解决这个问题,但现在错误就出现了!
答案 0 :(得分:2)
答案 1 :(得分:0)
这也意味着您运行的Laravel的实际版本是4.0而不是4.1。检查您的composer.json文件以确保您需要Laravel 4.1。*。有些软件包可能还不能用于4.1,所以有时你可能需要回到版本4.0,这会导致这样的事情发生。