Composer require runs out of memory. PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted(Composer 要求内存不足.PHP致命错误:允许的内存大小为1610612736字节已用尽)
问题描述
我正在尝试通过运行以下命令将 HWIOAuthBundle 添加到我的项目中.
I am trying to add HWIOAuthBundle to my project by running the below command.
composer require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle
HWIOAuthBundle github:https://github.com/hwi/HWIOAuthBundle
HWIOAuthBundle github: https://github.com/hwi/HWIOAuthBundle
当我尝试运行 composer require 时,出现内存不足错误.
When I try to run composer require I am getting the out of memory error.
为 hwi/oauth-bundle 使用版本 ^0.6.0@dev 使用版本 ^1.2@dev对于 php-http/guzzle6-adapter 使用版本 ^1.10@devphp-http/httplug-bundle ./composer.json 已更新包含包信息的作曲家存储库更新依赖项(包括require-dev)
Using version ^0.6.0@dev for hwi/oauth-bundle Using version ^1.2@dev for php-http/guzzle6-adapter Using version ^1.10@dev for php-http/httplug-bundle ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev)
PHP 致命错误:允许的内存大小为 1610612736 字节已用尽(试图分配 67108864 字节)在phar:///usr/local/Cellar/composer/1.4.2/libexec/composer.phar/src/Composer/DependencyResolver/Solver.php 在第 220 行
PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 67108864 bytes) in phar:///usr/local/Cellar/composer/1.4.2/libexec/composer.phar/src/Composer/DependencyResolver/Solver.php on line 220
致命错误:允许的内存大小为 1610612736 字节已用尽(已尝试分配 67108864 字节)在phar:///usr/local/Cellar/composer/1.4.2/libexec/composer.phar/src/Composer/DependencyResolver/Solver.php 在第 220 行
Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 67108864 bytes) in phar:///usr/local/Cellar/composer/1.4.2/libexec/composer.phar/src/Composer/DependencyResolver/Solver.php on line 220
我尝试在我的 php.ini 文件中将 memory_limit 设置为 2G,但没有成功.我通过运行 php -i | 找到了我的 php.inigrep php.ini
I tried setting the memory_limit to 2G in my php.ini file but did not work. I found my php.ini by running php -i | grep php.ini
推荐答案
要获取当前的 memory_limit 值,运行:
To get the current memory_limit value, run:
php -r "echo ini_get('memory_limit').PHP_EOL;"
尝试增加 php.ini
文件中的限制(例如,对于类似 Debian 的系统,/etc/php5/cli/php.ini
):
Try increasing the limit in your php.ini
file (ex. /etc/php5/cli/php.ini
for Debian-like systems):
; Use -1 for unlimited or define an explicit value like 2G
memory_limit = -1
或者,您可以使用命令行参数增加限制:
Or, you can increase the limit with a command-line argument:
php -d memory_limit=-1 composer.phar require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle
要获取加载的 php.ini 文件位置尝试:
To get loaded php.ini files location try:
php --ini
另一个快速解决方案:
php composer.phar COMPOSER_MEMORY_LIMIT=-1 require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle
或者只是:
COMPOSER_MEMORY_LIMIT=-1 composer require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle
这篇关于Composer 要求内存不足.PHP致命错误:允许的内存大小为1610612736字节已用尽的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Composer 要求内存不足.PHP致命错误:允许的内存大小为1610612736字节已用尽
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01