1{
2    "name": "symfony/yaml",
3    "type": "library",
4    "description": "Loads and dumps YAML files",
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": ">=7.2.5",
20        "symfony/deprecation-contracts": "^2.1|^3",
21        "symfony/polyfill-ctype": "^1.8"
22    },
23    "require-dev": {
24        "symfony/console": "^5.3|^6.0"
25    },
26    "conflict": {
27        "symfony/console": "<5.3"
28    },
29    "suggest": {
30        "symfony/console": "For validating YAML files using the lint command"
31    },
32    "autoload": {
33        "psr-4": { "Symfony\\Component\\Yaml\\": "" },
34        "exclude-from-classmap": [
35            "/Tests/"
36        ]
37    },
38    "bin": [
39        "Resources/bin/yaml-lint"
40    ],
41    "minimum-stability": "dev"
42}
43