LoginSignup
2
2

More than 5 years have passed since last update.

【メモ】LaravelでPusherを使おうとしたらClass Pusher not found的なエラーが出てきたので対処法をメモ

Posted at

Laravel5.4でPusherを使おうと思い、
readouble.comを参考にインストールしてから使おうとした。

まず最初にlaravel-echoでリッスンしてもイベントが伝わっていない、というエラーがでた。
これは、.envファイルのBROADCAST_DRIVER=pusherとすることで解決。

そうすると今度は、

Class Pusher not found

的なエラーが発生。

これはBroadcastManager.phpPusherBroadcaster.phpで、

use Pusher;

となっているところを、

user Pusher/Pusher;

とすることで解消した。

これは、autoload_classmap.phpPusher\Pusherで定義してあるため。
(こっちをPusherに変えようかとも思ったけど影響範囲が広そうだったのでやめた)

ちなみに、BroadcastManager.phpPusherBroadcaster.phpは、
共にIlluminate/Broadcastingの中にある。

以上。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2