Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / robo / composer.json
1 {
2     "name": "consolidation/robo",
3     "description": "Modern task runner",
4     "license": "MIT",
5     "authors": [
6         {
7             "name": "Davert",
8             "email": "davert.php@resend.cc"
9         }
10     ],
11     "autoload":{
12         "psr-4":{
13             "Robo\\":"src"
14         }
15     },
16     "autoload-dev":{
17         "psr-4":{
18             "Robo\\":"tests/src",
19             "RoboExample\\":"examples/src"
20         }
21     },
22     "bin":["robo"],
23     "require": {
24         "php": ">=5.5.0",
25         "league/container": "^2.2",
26         "consolidation/log": "~1",
27         "consolidation/config": "^1.0.10",
28         "consolidation/annotated-command": "^2.8.2",
29         "consolidation/output-formatters": "^3.1.13",
30         "consolidation/self-update": "^1",
31         "g1a/composer-test-scenarios": "^2",
32         "grasmash/yaml-expander": "^1.3",
33         "symfony/finder": "^2.5|^3|^4",
34         "symfony/console": "^2.8|^3|^4",
35         "symfony/process": "^2.5|^3|^4",
36         "symfony/filesystem": "^2.5|^3|^4",
37         "symfony/event-dispatcher": "^2.5|^3|^4"
38     },
39     "require-dev": {
40         "patchwork/jsqueeze": "~2",
41         "natxet/CssMin": "3.0.4",
42         "pear/archive_tar": "^1.4.2",
43         "codeception/base": "^2.3.7",
44         "goaop/framework": "~2.1.2",
45         "codeception/verify": "^0.3.2",
46         "codeception/aspect-mock": "^1|^2.1.1",
47         "goaop/parser-reflection": "^1.1.0",
48         "nikic/php-parser": "^3.1.5",
49         "satooshi/php-coveralls": "^2",
50         "phpunit/php-code-coverage": "~2|~4",
51         "squizlabs/php_codesniffer": "^2.8"
52     },
53     "scripts": {
54         "cs": "./robo sniff",
55         "unit": "./robo test --coverage",
56         "lint": [
57             "find src -name '*.php' -print0 | xargs -0 -n1 php -l",
58             "find tests/src -name '*.php' -print0 | xargs -0 -n1 php -l"
59         ],
60         "test": [
61             "@lint",
62             "@unit",
63             "@cs"
64         ],
65         "scenario": "scenarios/install",
66         "pre-install-cmd": [
67             "Robo\\composer\\ScriptHandler::checkDependencies"
68         ],
69         "post-update-cmd": [
70             "create-scenario symfony4 'symfony/console:^4.0' --platform-php '7.1.3'",
71             "create-scenario symfony2 'symfony/console:^2.8' --platform-php '5.5.9' --no-lockfile --remove 'goaop/framework'"
72         ]
73     },
74     "config": {
75         "optimize-autoloader": true,
76         "sort-packages": true,
77         "platform": {
78             "php": "5.6.3"
79         }
80     },
81     "extra": {
82         "branch-alias": {
83             "dev-master": "1.x-dev",
84             "dev-state": "1.x-dev"
85         }
86     },
87     "suggest": {
88         "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
89         "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
90         "patchwork/jsqueeze": "For minifying JS files in taskMinify",
91         "natxet/CssMin": "For minifying CSS files in taskMinify"
92     },
93     "replace": {
94         "codegyre/robo": "< 1.0"
95     }
96 }