我想将此插件添加到我的项目中 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.
任何想法如何调试??
答案 0 :(得分:4)
这是因为您同时更新了composer.json
和app.php
。你应该做的是先将其添加到composer.json
:
"davibennun/laravel-push-notification": "dev-master"
然后运行此命令:
composer update
仅在完成后,将这些行添加到app/config/app.php
:
Davibennun\LaravelPushNotification\LaravelPushNotificationServiceProvider
...
'PushNotification' => 'Davibennun\LaravelPushNotification\Facades\PushNotification'
希望这有帮助。