Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / self-update / composer.json
diff --git a/vendor/consolidation/self-update/composer.json b/vendor/consolidation/self-update/composer.json
new file mode 100644 (file)
index 0000000..3125a65
--- /dev/null
@@ -0,0 +1,43 @@
+{
+    "name": "consolidation/self-update",
+    "description": "Provides a self:update command for Symfony Console applications.",
+    "license": "MIT",
+    "authors": [
+        {
+            "name": "Alexander Menk",
+            "email": "menk@mestrona.net"
+        },
+        {
+            "name": "Greg Anderson",
+            "email": "greg.1.anderson@greenknowe.org"
+        }
+    ],
+    "autoload":{
+        "psr-4":{
+            "SelfUpdate\\":"src"
+        }
+    },
+    "require": {
+        "php": ">=5.5.0",
+        "symfony/console": "^2.8|^3|^4",
+        "symfony/filesystem": "^2.5|^3|^4"
+    },
+    "bin": [
+        "scripts/release"
+    ],
+    "scripts": {
+        "release":  "./scripts/release VERSION"
+    },
+    "config": {
+        "optimize-autoloader": true,
+        "sort-packages": true,
+        "platform": {
+            "php": "5.6.3"
+        }
+    },
+    "extra": {
+        "branch-alias": {
+            "dev-master": "1.x-dev"
+        }
+    }
+}