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.

Laravelプロジェクトでcomposer install時にエラー

Posted at

##エラー内容

Laravelプロジェクトでcomposer install時にエラー発生。

Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Your requirements could not be resolved to an installable set of packages.

cap.png

拡張機能ext-mbstringがなくて怒られている模様。

CentOSとかだとyum install・・・でext-mbstringをインストールすればいいようですが、
こちらWindows。

##解決策

php.iniファイル内に拡張機能を指定する項があるので、そこを修正。

extension=mbstring

上記がコメントアウトされていたので、コメントアウトを除外して解決。

phpの拡張機能はphpフォルダのext内にあり、iniファイルでどの拡張機能を使用するか指定している模様。

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?