How to fix no colors in Symfony2 Console Component

Eneko
enekochan
Published in
1 min readDec 5, 2014

After updating from PHP 5.4 to PHP 5.6 I saw there was no colors anymore when running commands with the console component.

This happend because I didn’t install php-poxis extension. So it was fixed by just running this Mac Ports command:

$ sudo port install php56-posix

Note: If you use another version of PHP change the version number or just use php-poxis.

Ref: http://serverfault.com/a/409966

--

--