Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / nikic / php-parser / composer.json
1 {
2     "name": "nikic/php-parser",
3     "description": "A PHP parser written in PHP",
4     "keywords": ["php", "parser"],
5     "type": "library",
6     "license": "BSD-3-Clause",
7     "authors": [
8         {
9             "name": "Nikita Popov"
10         }
11     ],
12     "require": {
13         "php": ">=7.0",
14         "ext-tokenizer": "*"
15     },
16     "require-dev": {
17         "phpunit/phpunit": "^6.5 || ^7.0"
18     },
19     "autoload": {
20         "psr-4": {
21             "PhpParser\\": "lib/PhpParser"
22         }
23     },
24     "bin": ["bin/php-parse"],
25     "extra": {
26         "branch-alias": {
27             "dev-master": "4.1-dev"
28         }
29     }
30 }