ちょっとした技術メモを忘れないうちに書いていく

Composer install実行時のエラー

2019-07-02


経緯

仕事で使っている CakePHP をちゃんと勉強しようと思い、 ↓ からプログラムをダウンロードして、「composer install」でエラーが発生

https://github.com/gothinkster/realworld(いろいろな言語で作られた投稿サイトのリポジトリのリンク(各言語の公式ではない))

エラー内容

php_cakephp_1.png

全文

Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for cakephp/cakephp 3.4.6 -> satisfiable by cakephp/cakephp[3.4.6].
    - cakephp/cakephp 3.4.6 requires ext-mbstring * -> the requested PHP extension mbstring is missing from your system.
  Problem 2
    - Installation request for phar-io/manifest 1.0.1 -> satisfiable by phar-io/manifest[1.0.1].
    - phar-io/manifest 1.0.1 requires ext-dom * -> the requested PHP extension dom is missing from your system.
  Problem 3
    - Installation request for phpunit/php-code-coverage 5.2.1 -> satisfiable by phpunit/php-code-coverage[5.2.1].
    - phpunit/php-code-coverage 5.2.1 requires ext-dom * -> the requested PHP extension dom is missing from your system.
  Problem 4
    - Installation request for phpunit/phpunit 6.1.3 -> satisfiable by phpunit/phpunit[6.1.3].
    - phpunit/phpunit 6.1.3 requires ext-dom * -> the requested PHP extension dom is missing from your system.
  Problem 5
    - Installation request for squizlabs/php_codesniffer 3.0.0 -> satisfiable by squizlabs/php_codesniffer[3.0.0].
    - squizlabs/php_codesniffer 3.0.0 requires ext-simplexml * -> the requested PHP extension simplexml is missing from your system.
  Problem 6
    - Installation request for theseer/tokenizer 1.1.0 -> satisfiable by theseer/tokenizer[1.1.0].
    - theseer/tokenizer 1.1.0 requires ext-dom * -> the requested PHP extension dom is missing from your system.
  Problem 7
    - cakephp/cakephp 3.4.6 requires ext-mbstring * -> the requested PHP extension mbstring is missing from your system.
    - cakephp/debug_kit 3.9.5 requires cakephp/cakephp ^3.2.7 -> satisfiable by cakephp/cakephp[3.4.6].
    - Installation request for cakephp/debug_kit 3.9.5 -> satisfiable by cakephp/debug_kit[3.9.5].

cakephp3は拡張モジュールのmbstring、xml、intlが必要ですが、 必要なパッケージがないと怒られているみたいです、 Problem 1 の場合、php の mbstring がないのでエラーとなっている。

パッケージのインストール

足りなかったパッケージ mbstring、xml をインストール

sudo apt-get install  php-mbstring
sudo apt-get install  php-xml

再度、「composer install」を実行すると、インストール感のあるログが表示され、成功しました。

php_cakephp_2.png


目次