0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

composer dump-autoload

Last updated at Posted at 2019-11-30

半日ほど悩まされました。

まずは経緯。

$ php artisan db:seed

こちらを実行しようとすると、

ReflectionException : Class EntriesTableSeeder does not exist

こちらのエラーが。
ただ、少し調べると、

$ php composer.phar dump-autoload

を実行すれば解決できるとのこと。
しかし結果は...

Could not open input file: composer.phar

何故このエラーが出たかというと...
プロジェクトディレクトリの中で実行していなかったんですね。
...そりゃそうだ。

という訳で、composer.pharをプロジェクトディレクトリの中に移動してあげてから、
$ php composer.phar dump-autoload
を実行してあげたら解決出来ました。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?