Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / site-alias / composer.json
1 {
2     "name": "consolidation/site-alias",
3     "description": "Manage alias records for local and remote sites.",
4     "license": "MIT",
5     "authors": [
6         {
7             "name": "Greg Anderson",
8             "email": "greg.1.anderson@greenknowe.org"
9         },
10         {
11             "name": "Moshe Weitzman",
12             "email": "weitzman@tejasa.com"
13         }
14     ],
15     "autoload": {
16         "psr-4": {
17             "Consolidation\\SiteAlias\\": "src"
18         }
19     },
20     "autoload-dev": {
21         "psr-4": {
22             "Consolidation\\SiteAlias\\": "tests/src"
23         }
24     },
25     "require": {
26         "php": ">=5.5.0"
27     },
28     "require-dev": {
29         "symfony/yaml": "~2.3|^3",
30         "consolidation/Robo": "^1.2.3",
31         "symfony/console": "^2.8|^3|^4",
32         "knplabs/github-api": "^2.7",
33         "php-http/guzzle6-adapter": "^1.1",
34         "phpunit/phpunit": "^5",
35         "g1a/composer-test-scenarios": "^2",
36         "satooshi/php-coveralls": "^2",
37         "squizlabs/php_codesniffer": "^2.8"
38     },
39     "scripts": {
40         "phar:install-tools": [
41             "gem install mime-types -v 2.6.2",
42             "curl -LSs https://box-project.github.io/box2/installer.php | php"
43         ],
44         "phar:build": "box build",
45         "cs": "phpcs --standard=PSR2 -n src",
46         "cbf": "phpcbf --standard=PSR2 -n src",
47         "unit": "phpunit --colors=always",
48         "lint": [
49             "find src -name '*.php' -print0 | xargs -0 -n1 php -l",
50             "find tests/src -name '*.php' -print0 | xargs -0 -n1 php -l"
51         ],
52         "test": [
53             "@lint",
54             "@unit",
55             "@cs"
56         ],
57         "release": [
58             "release VERSION"
59         ],
60         "scenario": ".scenarios.lock/install",
61         "post-update-cmd": [
62             "create-scenario phpunit5 'phpunit/phpunit:^5.7.27' --platform-php '5.6.33'",
63             "dependency-licenses"
64         ]
65     },
66     "config": {
67         "optimize-autoloader": true,
68         "sort-packages": true,
69         "platform": {
70             "php": "7.0.8"
71         }
72     },
73     "extra": {
74         "branch-alias": {
75             "dev-master": "1.x-dev"
76         }
77     }
78 }