Composer Update failed — out of memory

后端 未结 25 2569
再見小時候
再見小時候 2020-12-01 00:40

I got this error when running composer.phar update on my VM:

PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried t

25条回答
  •  时光取名叫无心
    2020-12-01 01:18

    Rather than permanently setting your memory limit to an increased number (or unlimited), I use this;

    # Running an update
    COMPOSER_MEMORY_LIMIT=-1 composer update
    
    COMPOSER_MEMORY_LIMIT=-1 composer require PACKAGE/NAME
    

    That temporarily set's the composer memory limit env variable to unlimited.

提交回复
热议问题