ChatGPT解决这个技术问题 Extra ChatGPT

Composer require runs out of memory. PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted

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

When I try to run composer require I am getting the out of memory error.

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 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 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

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

Have you done a composer self-update lately? Not sure if the 1.4.2 in your error message indicates version 1.4.2 but the latest version of composer is 1.6.2. And how much physical memory do you have? Is it a vm or cloud server?
@Cerad Yes - I did a composer self-update before and my composer version is 1.6.2
@Cerad this is on my local machine and I definitely should have enough memory
When experiencing this issue on projects where Composer ran fine previously, I'd advise running composer self-update --rollback. I started running into memory exhaustion with v.1.9.3, which stopped when I rolled back to 1.8.6.
Does no-one else think that it's pretty crazy that running composer require can use more than 1.5G of memory? When I first saw this I thought it has to be a bug in composer. Setting the memory limit to -1 did work for me... but how on earth is 1.5G not enough? Can composer really need so much?

D
Diego Ricardo Valdivia Arreola

To get the current memory_limit value, run:

php -r "echo ini_get('memory_limit').PHP_EOL;"

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

To get loaded php.ini files location try:

php --ini

Another quick solution:

php composer.phar COMPOSER_MEMORY_LIMIT=-1 require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle

Or just:

COMPOSER_MEMORY_LIMIT=-1 composer require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle

COMPOSER_MEMORY_LIMIT=-1 composer update works for me also.
Thanks for the command php --ini ! in php 7.4 you have a different php ini file (php-cli.ini) for clid
using php -d memory_limit=-1 composer.phar install worked for me. Thanks!
is memory_limit= -1 a good solution ? it seems like it removes any memory consumption limit and can use up all of it.
On Windows, use SET COMPOSER_MEMORY_LIMIT=-1
o
odubah

In my case I was trying to require this package when I got this error.

You can run like this, and you don't have to update the PHP INI file:

COMPOSER_MEMORY_LIMIT=-1 composer require huddledigital/zendesk-laravel

Also helped. My PHP limit was 128MB, but the error message said that PHP composer limit is 1,5GB (which means it's configured elsewhere for this particular case). So modification of php.ini didn't help, but this answer did.
2021 and this solution still works. Thank you!
Thank you, putting the constant COMPOSER_MEMORY_LIMIT=-1 before the composer require xyz made it work (the accepted answer did not).
you saved my day, in my case, i am instalingl COMPOSER_MEMORY_LIMIT=-1 composer require guzzlehttp/guzzle
T
Thomas Vangelooven

Another solution from the manual:

Composer also respects a memory limit defined by the COMPOSER_MEMORY_LIMIT environment variable:

COMPOSER_MEMORY_LIMIT=-1 composer.phar <...>

Or in my case

export COMPOSER_MEMORY_LIMIT=-1
composer <...>

On mac I edited ~/.bash_profile to add alias composer="COMPOSER_MEMORY_LIMIT=-1 composer" and that solved it for me. Be sure to source the file after the change or restart your terminal
perfect solution (no need to change any php configuration)
M
Milla Sense

Same problem, none of anything related to "memory_limit" worked, but..

composer self-update --2

..solved my problem. (upgrade: 1.10.17 -> 2.0.4)


For those composer self-update --2 - did not worked and error had happened. composer self-update --stable did the job :)
others solutions didnt work, hopefully u wrote yours...u made my day thank you
Merci!, you saved my job.
composer self-update --stable Easy and fast way, thanx!
composer self-update --stable then composer update worked.
T
TIGER

On Windows 10;

Goto C:\ProgramData\ComposerSetup\bin

Edit: composer.bat and add memory_limit=-1 in the last line as shown below.

@echo OFF
:: in case DelayedExpansion is on and a path contains ! 
setlocal DISABLEDELAYEDEXPANSION
php -d memory_limit=-1 "%~dp0composer.phar" %*

Problem solved ;)


the best one for me, almost all of them didn't work for me.
I also had to update composer file without .bat extension (adding same -d memory_limit=-1) to last line.
In windows, the location of composer.bat need not be C:\ProgramData\ComposerSetup\bin always, but I guess that is the default location. However, if someone want to find location of composer.bat just need to run the where command: like where composer. That will show exact location.
A
Arno van Oordt

Since none of the previous answers included set it took me a bit to figure out how to do it in Windows without altering the php.ini, but here's what worked for me:

set COMPOSER_MEMORY_LIMIT=-1
composer require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle

This is the best answer for Windows environment. Thanks :)
D
Davide Casiraghi

I have bypassed the problem in a Homestead Laravel (vagrant) virtual machine running the composer commands preceded by COMPOSER_MEMORY_LIMIT=-1:

Examples

To update Composer:

COMPOSER_MEMORY_LIMIT=-1 composer update

To install a package:

COMPOSER_MEMORY_LIMIT=-1 composer require spatie/laravel-translatable

Thanks dude! Is it globally updated or only for that specific command?
Just a temporary solution for that specific command.
Thanks amigo ! Thats best solution for win10
I am using laravel 8 and I had to add env before the command to something like this env COMPOSER_MEMORY_LIMIT=-1 composer update
j
juanitourquiza

For this error in macOS Catalina and macOS Big Sur use this line:

php -d memory_limit=-1 /usr/local/bin/composer update --no-plugins

I used this line to update on Symfony 5. This command also worked with laravel 7.


It worked for me! php -d memory_limit=-1 composer.phar require laravel-frontend-presets/tailwindcss --dev
How do I fixed this permanently ? I need to redo it every time creating new project. Any advise ?
A
Acapulco

Just set the memory_limit specifying the full route of your composer.phar file and update, in my case with the command:

php -d memory_limit=-1 C:/wamp64/composer.phar update

Also COMPOSER_MEMORY_LIMIT=-1 composer.phar update works. See: getcomposer.org/doc/articles/…
on ubuntu use this php -d memory_limit=-1 /usr/bin/composer update
COMPOSER_MEMORY_LIMIT=-1 composer works for me too.. @mayid Thank you. :+1
m
meow2x

Sometimes the problem is in the composer memory limit. In my case, I tried increasing the php memory limit but still got the error. You can use COMPOSER_MEMORY_LIMIT=-1 to get around that. Use it as a prefix:

COMPOSER_MEMORY_LIMIT=-1 composer require the/library

You have to prefix it again in the future.

Hope this helps.


If you are working with windows CLI, this is the right answer for you.
R
Ruben Gonzalez

It was recently identified that Composer consumes high CPU + memory on packages that have a lot of historical tags. See composer/composer#7577

A workaround to this problem is using symfony/flex or https://github.com/rubenrua/symfony-clean-tags-composer-plugin

composer global require rubenrua/symfony-clean-tags-composer-plugin

Just need to have the plugin installed globally? Nothing else to be done? Could you please explain what this plugin actually do? Does is reduce memory usage by composer in such cases?
M
Marcus Christiansen

Just in case you get a composer error with:

Could not open input file: composer

run:

php -d memory_limit=-1 /usr/local/bin/composer require ...

A
Abduhafiz

For skipping memory limit and version error use the code below:

COMPOSER_MEMORY_LIMIT=-1 composer require <package-name> --ignore-platform-reqs

M
Mohamed Hany

what about windows?

i use windows 10 and this command worked for me,

php -d memory_limit=-1 "C:\ProgramData\ComposerSetup\bin\composer.phar" update

A
Anatoly Sokolov

Composer 2.0 preview is available now: https://github.com/composer/composer/releases Fixed issue for me. You can set up a preview with composer self-update --preview

EDIT: Composer 2 with memory tuning released


R
Roubi

You can use a specific php Version when running Composer

If, like me, for some reason, you are using PHP 32 bits even though your computer is 64 bits, this will always limit the amount of memory allocated to Composer. I solved my problem this way:

Install a 64 bits php version somewhere on your computer (let's say in C:/php64)

In composer (using cygwin in my case), run:

COMPOSER_MEMORY_LIMIT=-1 C:/php64/php.exe ../composer.phar update


This suggestion worked for me! Thanks. A note is that you also need to update the system environment variable to use the new 64bit version globally.
s
saber tabatabaee yazdi

in windows by xampp i just changed:

;memory_limit=512M 

in php.ini to:

memory_limit =-1

then restart the Apache by xampp

this is the result:

; Maximum amount of memory a script may consume
; http://php.net/memory-limit
memory_limit =-1
;memory_limit=512M

This works man Thank you man on 2021Jan15
K
Kalle Karlsson

On Mac php 7.4

run

php --ini

Configuration File (php.ini) Path: /usr/local/etc/php/7.4
Loaded Configuration File:         /usr/local/etc/php/7.4/php.ini
Scan for additional .ini files in: /usr/local/etc/php/7.4/conf.d
Additional .ini files parsed:      /usr/local/etc/php/7.4/conf.d/ext-opcache.ini,
/usr/local/etc/php/7.4/conf.d/php-memory-limits.ini

If Additional .ini files parsed: memory_limit needs to be changed in

/usr/local/etc/php/7.4/conf.d/php-memory-limits.ini

As Jose Seie writes, set memory to

memory_limit = -1 or memory_limit = 1G

S
Steven Yip

Just want to share my situation on this matter.

Problem context:

Running composer in a vagrant box. Was getting this message after try to run composer require "laravel-doctrine/orm:~1.4.13":

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 Check https://getcomposer.org/doc/articles/troubleshooting.md#memory-limit-errors for more info on how to handle out of memory errors.

Have tried setting php.ini memory limit to -1. (still not working).

Solution:

Apparently my composer.json and composer.lock has some issues. Ran $ composer validate, and the result was: "The lock file is not up to date with the latest changes in composer.json, it is recommended that you run composer update." So I ran $ composer update, and all dependencies are resolved. Imho, when the dependencies has some issues, maybe the tree building is out of sync, hence the out of memory issue.

Hope this helps anyone out there.


J
Jose Seie

To override this and fix the issue on your local machine you can do the following changes within your php.ini configuration file.

To locate your php.ini configuration file you can use the following command: php --ini

After running this command you should see an output like the following:

Configuration File (php.ini) Path: /usr/local/etc/php/7.3
Loaded Configuration File:         /usr/local/etc/php/7.3/php.ini <---- note the path
Scan for additional .ini files in: /usr/local/etc/php/7.3/conf.d
Additional .ini files parsed:      /usr/local/etc/php/7.3/conf.d/ext-opcache.ini

The file we want to change is the Loaded Configuration.

Open and search for the memory_limit you can set the memory_limit = -1 to give an unlimited amount of memory to PHP processes or you can set 512MB, 1G, 2G, 5G,.... $ nano /usr/local/etc/php/7.3/php.ini

locate and set:

$ memory_limit = -1 or memory_limit = 1G

After saving your file, you can verify the PHP changes by running this command which will output the current memory settings in your php.ini file: php -r "echo ini_get('memory_limit').PHP_EOL;"

NOTE: After saving, the new memory will be working. You don't need to do anything else.

More info: https://support.acquia.com/hc/en-us/articles/360036102614-Overriding-memory-limits-during-local-development-with-Composer


i
igniel

for Centos 7 use :

COMPOSER_MEMORY_LIMIT=-1 composer require hwi/oauth-bundle php-http/guzzle6-adapter php-http/httplug-bundle

T
Ted Mosby
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 Check https://getcomposer.org/doc/articles/troubleshooting.md#memory-limit-errors for more info on how to handle out of memory errors.

set memory_limit to -1 works for me ;) (vim /etc/php/7.2/cli/php.ini)


I don't understand why anyone would intentionally allow anything to use up that much memory. The memory use is the issue. Composer should be able to run with 4GB and even that is pathetically resource-hoggy. If you're on an autoscaling hosting environment you're going to run into some nasty surprises when your monthly bill comes in...
P
Prosanta Chaki

For Macbook: run command sudo nano ~/.bash_profile to edit bash_profile then add alias composer="COMPOSER_MEMORY_LIMIT=-1 composer" in that file, then save and exit.

Hope this will solve the problem; Happy coding!


e
emjayess

I condensed or packaged up the useful and accepted answer here into reusable (zsh) aliases/functions, for quicker and easier-to-remember reuse:

# composer high-memory
composermem() {
  php -r "echo ini_get('memory_limit').PHP_EOL;"
}
alias composerbig='COMPOSER_MEMORY_LIMIT=-1 composer $1'

(php composer.phar is already aliased to composer on the system).


F
Faisal Ahmed

I solved this problem using this command COMPOSER_MEMORY_LIMIT=-1

Example: COMPOSER_MEMORY_LIMIT=-1 composer requires larval/ui


A
Adie RT

For me, this works on shared hosting.

COMPOSER_MEMORY_LIMIT=-1 composer update

T
TarangP

In My case i've tried to install the Laravel framework without stating xampp server (or apache server) in my windows system and i got following error

Fatal error: Allowed memory size of 1610612736 bytes exhausted

as soon as i started the xampp server (or apache server) it started to install the laravel framework and error gone away.

So actually sometimes you have to check this or else it will take longer time than usual and consume more memeory and in result size will be exhausted.


S
Saud Alfadhli

Make sure to not require a package before making sure the vendor folder exists.

Check if you have done composer install before. You may be just cloned the repository to your machine. So, you have to install the old packages before requiring a new one. Or you may want to include this option --profile to your composer command to see the timing and memory usage information.


V
Vadim Izmalkov

In my case:

Windows 10 and Docker Desktop works:

docker-compose -f .docker/docker-compose.yml exec php env COMPOSER_MEMORY_LIMIT=-1 composer require fideloper/proxy


V
Vignesh PS

You just need to increase memory limit on "php.ini" file to solve the problem

find the "memory_limit" in php.ini file.

just change memory_limit value to 2G like below

;http://php.net/memory-limit
memory_limit=2G

to relocate the php file by using below command.

php --ini

This looks like a duplicate of the other answers. Is there anything new you want to add?
i thought, post solution of my problem might helpful to someone. rather than i couldn't find any alternate new solution.

关注公众号,不定期副业成功案例分享
Follow WeChat

Success story sharing

Want to stay one step ahead of the latest teleworks?

Subscribe Now