When I'm trying to install a new bundle with composer, I'm always running into this problem:
PHP Fatal error: Out of memory (allocated 1690828800) (tried to allocate 268435456 bytes) in phar://C:/.../composer.phar/src/Composer/DependencyResolver/Solver.php on line 220
Fatal error: Out of memory (allocated 1690828800) (tried to allocate 268435456 bytes) in phar://C:/.../composer.phar/src/Composer/DependencyResolver/Solver.php on line 220
I tried to raise the memory limit in php.ini and started a whole new project with fresh composer. I should have enough memory on my machine.
Update:
When encountering this problem, also bear in mind that if you change parameters in your PHP.ini, that you've to change them for your PHP CLI. I often forgot that and just changed the php.ini for the version my apache is using...
You can do
php -d memory_limit=-1 /path/to/composer ...
like explained in the doc.