Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / league / container / composer.json
1 {
2     "name": "league/container",
3     "description": "A fast and intuitive dependency injection container.",
4     "keywords": [
5         "league",
6         "container",
7         "dependency",
8         "injection",
9         "di",
10         "service",
11         "provider"
12     ],
13     "homepage": "https://github.com/thephpleague/container",
14     "license": "MIT",
15     "authors": [
16         {
17             "name": "Phil Bennett",
18             "email": "philipobenito@gmail.com",
19             "homepage": "http://www.philipobenito.com",
20             "role": "Developer"
21         }
22     ],
23     "require": {
24         "php": "^5.4.0 || ^7.0",
25         "container-interop/container-interop": "^1.2"
26     },
27     "require-dev": {
28         "phpunit/phpunit" : "4.*"
29     },
30     "provide": {
31         "container-interop/container-interop-implementation": "^1.2",
32         "psr/container-implementation": "^1.0"
33     },
34     "replace": {
35         "orno/di": "~2.0"
36     },
37     "autoload": {
38         "psr-4": {
39             "League\\Container\\": "src"
40         }
41     },
42     "autoload-dev": {
43         "psr-4": {
44             "League\\Container\\Test\\": "tests"
45         }
46     },
47     "extra": {
48         "branch-alias": {
49             "dev-2.x": "2.x-dev",
50             "dev-1.x": "1.x-dev"
51         }
52     }
53 }