Add possibility for defining the composer_cmd in the global config.

This commit is contained in:
Andrés Montañez 2014-08-25 14:05:01 -03:00
parent e54baf726a
commit c3204844ea

View file

@ -21,7 +21,7 @@ abstract class ComposerAbstractTask extends AbstractTask
{
protected function getComposerCmd()
{
$composerCmd = $this->getParameter('composer_cmd', 'php composer.phar');
$composerCmd = $this->getParameter('composer_cmd', $this->getConfig()->general('composer_cmd', 'php composer.phar'));
return $this->getConfig()->general('composer_cmd', $composerCmd);
}
}