Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / self-update / composer.json
1 {
2     "name": "consolidation/self-update",
3     "description": "Provides a self:update command for Symfony Console applications.",
4     "license": "MIT",
5     "authors": [
6         {
7             "name": "Alexander Menk",
8             "email": "menk@mestrona.net"
9         },
10         {
11             "name": "Greg Anderson",
12             "email": "greg.1.anderson@greenknowe.org"
13         }
14     ],
15     "autoload":{
16         "psr-4":{
17             "SelfUpdate\\":"src"
18         }
19     },
20     "require": {
21         "php": ">=5.5.0",
22         "symfony/console": "^2.8|^3|^4",
23         "symfony/filesystem": "^2.5|^3|^4"
24     },
25     "bin": [
26         "scripts/release"
27     ],
28     "scripts": {
29         "release":  "./scripts/release VERSION"
30     },
31     "config": {
32         "optimize-autoloader": true,
33         "sort-packages": true,
34         "platform": {
35             "php": "5.6.3"
36         }
37     },
38     "extra": {
39         "branch-alias": {
40             "dev-master": "1.x-dev"
41         }
42     }
43 }