Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / dependency-injection / composer.json
1 {
2     "name": "symfony/dependency-injection",
3     "type": "library",
4     "description": "Symfony DependencyInjection Component",
5     "keywords": [],
6     "homepage": "https://symfony.com",
7     "license": "MIT",
8     "authors": [
9         {
10             "name": "Fabien Potencier",
11             "email": "fabien@symfony.com"
12         },
13         {
14             "name": "Symfony Community",
15             "homepage": "https://symfony.com/contributors"
16         }
17     ],
18     "require": {
19         "php": "^5.5.9|>=7.0.8",
20         "psr/container": "^1.0"
21     },
22     "require-dev": {
23         "symfony/yaml": "~3.4|~4.0",
24         "symfony/config": "~3.3|~4.0",
25         "symfony/expression-language": "~2.8|~3.0|~4.0"
26     },
27     "suggest": {
28         "symfony/yaml": "",
29         "symfony/config": "",
30         "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
31         "symfony/expression-language": "For using expressions in service container configuration",
32         "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them"
33     },
34     "conflict": {
35         "symfony/config": "<3.3.7",
36         "symfony/finder": "<3.3",
37         "symfony/proxy-manager-bridge": "<3.4",
38         "symfony/yaml": "<3.4"
39     },
40     "provide": {
41         "psr/container-implementation": "1.0"
42     },
43     "autoload": {
44         "psr-4": { "Symfony\\Component\\DependencyInjection\\": "" },
45         "exclude-from-classmap": [
46             "/Tests/"
47         ]
48     },
49     "minimum-stability": "dev",
50     "extra": {
51         "branch-alias": {
52             "dev-master": "3.4-dev"
53         }
54     }
55 }