Symfony 2.4 プロジェクトに phpdocumentor をインストールしたいので、次の 2 行を composer.json に追加しました。
"require": {
//my old requires
"phpdocumentor/template-abstract": "~1.2",
"phpdocumentor/phpdocumentor": "2.1.*@dev"
}
php composer.phar update を実行すると、次のエラーが発生します。
Problem 1
- phpdocumentor/template-abstract 1.2.1 requires ext-xsl * -> the requested PHP extension xsl is missing from your system.
- phpdocumentor/template-abstract 1.2 requires ext-xsl * -> the requested PHP extension xsl is missing from your system.
- Installation request for phpdocumentor/template-abstract ~1.2 -> satisfiable by phpdocumentor/template-abstract[1.2, 1.2.1].
PHP拡張機能にphp_xslをインストールしましたが?!! ありがとうございました。