taskComposerUpdate()->run(); * * // prefer dist with custom path * $this->taskComposerUpdate('path/to/my/composer.phar') * ->preferDist() * ->run(); * * // optimize autoloader with custom path * $this->taskComposerUpdate('path/to/my/composer.phar') * ->optimizeAutoloader() * ->run(); * ?> * ``` */ class Update extends Base { /** * {@inheritdoc} */ protected $action = 'update'; /** * {@inheritdoc} */ public function run() { $command = $this->getCommand(); $this->printTaskInfo('Updating Packages: {command}', ['command' => $command]); return $this->executeCommand($command); } }