Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / consolidation / robo / src / Task / Composer / Update.php
diff --git a/vendor/consolidation/robo/src/Task/Composer/Update.php b/vendor/consolidation/robo/src/Task/Composer/Update.php
new file mode 100644 (file)
index 0000000..3a0a64a
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+namespace Robo\Task\Composer;
+
+/**
+ * Composer Update
+ *
+ * ``` php
+ * <?php
+ * // simple execution
+ * $this->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);
+    }
+}