Level 18
The killed message ususally means the composer process consumed too much memory. So you can either add more memory to the system when possible (unless your on a shared host) or try this:
- Run
composer updateon your local copy (either your physical or virtual machine), commit it to git (with thecomposer.lockfile - Push the code to your server your having the issue on
- Run
composer installon the same server that killed your previous process.
Composer install will read from your lock file rather then trying to gather the latest version of each file.