无法通过 Composer 安装 phpDocumentor
问题描述
在 composer.json 我有
In composer.json I've got
之所以存在,是因为我正在尝试使用 ./composer.phar install
命令将 phpDocumentor 安装到一个隔离的文件夹中.但我得到的是
It's what is there because I'm trying to install phpDocumentor into an isolated folder with ./composer.phar install
command. But what I'm getting is
推荐答案
错误消息表明您在 PHP 设置中缺少 XSL 扩展.您可以查看 http://www.php.net/manual/en/xsl.install.php 了解有关安装该扩展的更多信息.
The error message indicates that you are missing the XSL extension in your PHP setup. You can see http://www.php.net/manual/en/xsl.installation.php for more information on installing that extension.
请注意,默认模板不需要 XSL 扩展;您还可以选择使用 PHAR 可执行文件或可下载的存档.这些可以从 https://github.com/phpDocumentor/phpDocumentor2/releases/latest.这两个不检查 XSL 扩展,因此可以安全使用.
Please note that the XSL extension is not necessary for the default template; you can also choose to use the PHAR executable or the downloadable archive. These can be downloaded from https://github.com/phpDocumentor/phpDocumentor2/releases/latest. These two do not check for the XSL extension and can thus be safely used.
这篇关于无法通过 Composer 安装 phpDocumentor的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!