Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Composer update - RuntimeException

Tags:

composer-php

After installing Composer I try to do a composer update which tells me this:

[Symfony\Component\Process\Exception\RuntimeException]
The process has been signaled with signal "11". 

I'm running OSX 10.6.8 (old, I know). What causes this error?

composer self-update ran just fine.

like image 728
stef Avatar asked May 26 '15 12:05

stef


People also ask

How do I increase composer memory limit?

phar <...> Or, you can increase the limit with a command-line argument: php -d memory_limit=-1 composer.


2 Answers

signal 11 is a segmentation fault. I guess there is a problem with your version of php.

can you show us the output of php --version ? and can you upgrade it if it's not the latest version ?

like image 194
Mathieu Avatar answered Oct 04 '22 15:10

Mathieu


I had The process has been signaled with signal "6". error and I had to run below commands:

$brew upgrade subversion
$brew link --overwrite subversion

and the issue went! :)

like image 23
Azizul Haque Avatar answered Oct 04 '22 16:10

Azizul Haque