composer 下载扩展时提示内存限制错误解决方案 PHP Fatal error: Allowed memory size of XXXXXX bytes exhauste
报错如下:
PHP Fatal error: Allowed memory size of XXXXXX bytes exhausted <…>
解决办法
在composer前加 COMPOSER_MEMORY_LIMIT=-1 ;例如
COMPOSER_MEMORY_LIMIT=-1 composer require "laravel/horizon:~3.1"
参考getcomposer.org/doc/articles/troub... 附多种解决方案
fish shell
COMPOSER_MEMORY_LIMIT
不生效- -