OROPlateform Error : Your requirements could not be resolved to an installable set of packages
OROPlateform Error : Your requirements could not be resolved to an installable set of packages
我正在 windows 系统上安装 ORO-Plateform。我从它的官方网站下载了这个包,并将它放在 xampp/htdocs 文件夹中。虽然我 运行 这个命令“composer install --prefer-dist --no-dev”。我遇到错误。
Problem 1
- Installation request for zendframework/zend-i18n 2.1.5 -> satisfiable by zendframework/zend-i18n[2.1.5].
- zendframework/zend-i18n 2.1.5 requires ext-intl * -> the requested PHP extension intl is missing from your system.
我该如何解决这个问题?请帮我。任何帮助将不胜感激。
如错误中所述,zendframework/zend-i18n
需要安装 intl
php 扩展。从 5.3.0 版开始,此扩展与 PHP 捆绑在一起,因此打开 php.ini
并取消注释 ;extension=php_intl
.
另外,看看安装指南php.net Intl Installing/Configuring
我正在 windows 系统上安装 ORO-Plateform。我从它的官方网站下载了这个包,并将它放在 xampp/htdocs 文件夹中。虽然我 运行 这个命令“composer install --prefer-dist --no-dev”。我遇到错误。
Problem 1 - Installation request for zendframework/zend-i18n 2.1.5 -> satisfiable by zendframework/zend-i18n[2.1.5]. - zendframework/zend-i18n 2.1.5 requires ext-intl * -> the requested PHP extension intl is missing from your system.
我该如何解决这个问题?请帮我。任何帮助将不胜感激。
如错误中所述,zendframework/zend-i18n
需要安装 intl
php 扩展。从 5.3.0 版开始,此扩展与 PHP 捆绑在一起,因此打开 php.ini
并取消注释 ;extension=php_intl
.
另外,看看安装指南php.net Intl Installing/Configuring