N98\Magento\Command\AbstractMagentoCommand::getComposer PHP Метод

getComposer() защищенный Метод

obtain composer
protected getComposer ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : Composer\Composer
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
Результат Composer\Composer
    protected function getComposer(InputInterface $input, OutputInterface $output)
    {
        $io = new ConsoleIO($input, $output, $this->getHelperSet());
        $config = array('config' => array('secure-http' => false));
        return ComposerFactory::create($io, $config);
    }