当composer update doctrine / inflector不存在时,Laravel会出错

时间:2015-01-26 08:01:43

标签: laravel plugins

我想将此插件添加到我的项目中 https://github.com/davibennun/laravel-push-notification

当我更新我的comoser.json,app.php,然后运行composer update。 得到了这个错误消息。

[RuntimeException]                                                           
  /ProjectPath/vendor/doctrine/inflector does not e  
  xist and could not be created. 

任何想法如何调试??

1 个答案:

答案 0 :(得分:4)

这是因为您同时更新了composer.jsonapp.php。你应该做的是先将其添加到composer.json

"davibennun/laravel-push-notification": "dev-master"

然后运行此命令:

composer update

仅在完成后,将这些行添加到app/config/app.php

Davibennun\LaravelPushNotification\LaravelPushNotificationServiceProvider
...
'PushNotification' => 'Davibennun\LaravelPushNotification\Facades\PushNotification'

希望这有帮助。