尝试在 XAMPP 5.6 上的 Symfony 2.7 中安装 FOSUserBundle。当我在项目目录中输入时:composer require friendsofsymfony/user-bundle "~2.0"我得到Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 4096 bytes) in phar:///usr/local/bin/composer/src/Composer/DependencyResolver/RuleWatchGraph.php on line 52所以我memory_limit = -1在 XAMPP 中的 php.ini 中进行了设置,但这没有帮助。
2 回答
慕妹3146593
TA贡献1820条经验 获得超9个赞
尝试:
COMPOSER_MEMORY_LIMIT=-1 composer require friendsofsymfony/user-bundle "~2.0"
或者
php -d memory_limit=-1 composer require friendsofsymfony/user-bundle "~2.0"
请参阅:https : //getcomposer.org/doc/articles/troubleshooting.md#memory-limit-errors
- 2 回答
- 0 关注
- 228 浏览
添加回答
举报
0/150
提交
取消