LoginSignup
1
0

More than 3 years have passed since last update.

composer でエラー

Posted at

エラー内容

$ composer install
[ErrorException]                                                             
"continue" targeting switch is equivalent to "break". Did you mean to use "  
continue 2"?

[原因]

  1. PHP7.3からcontinue は使えなくなるらしくそのエラーのようです。
  2. composer のバージョンに問題がある

私の場合は、別環境をそのまま入れたいだけなので、2番でした。

対処方法

まずcomposer のバージョン確認 compsoer -V をしたところ、1.5だったので、最新版へ
アップデート(バージョンアップ)します

composer self-update

終わり

これだけで、composer install が実行できました!
composer のバージョンアップの方法を探すのにちょっと苦労しました。。
よかった。

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