1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-09-13 12:40:18 +02:00

Add configurable composer_cmd parameter

This commit is contained in:
Kuba Turek 2014-08-20 17:46:44 +02:00 committed by Jakub Turek
parent 48420c1c2a
commit 95ffed7e12

View File

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