結論
$ COMPOSER_MEMORY_LIMIT=-1 composer install
- COMPOSER_MEMORY_LIMIT=-1をオプションにつけて実行する
参照記事とか
docker上のphpコンテナでcomposer installしたら、メモリ不足で落ちた話
を参照に、php.iniを編集しても問題はありませんでしたが、もっとお手軽な方法が。
php.ini
memory_limit = -1
composerにはCOMPOSER_MEMORY_LIMITの環境変数が使える
$ COMPOSER_MEMORY_LIMIT=-1 composer install