Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / console / composer.json
1 {
2     "name": "symfony/console",
3     "type": "library",
4     "description": "Symfony Console 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         "symfony/polyfill-mbstring": "~1.0",
21         "symfony/debug": "~2.8|~3.0|~4.0"
22     },
23     "require-dev": {
24         "symfony/config": "~3.3|~4.0",
25         "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
26         "symfony/dependency-injection": "~3.4|~4.0",
27         "symfony/lock": "~3.4|~4.0",
28         "symfony/process": "~3.3|~4.0",
29         "psr/log": "~1.0"
30     },
31     "suggest": {
32         "symfony/event-dispatcher": "",
33         "symfony/lock": "",
34         "symfony/process": "",
35         "psr/log-implementation": "For using the console logger"
36     },
37     "conflict": {
38         "symfony/dependency-injection": "<3.4",
39         "symfony/process": "<3.3"
40     },
41     "autoload": {
42         "psr-4": { "Symfony\\Component\\Console\\": "" },
43         "exclude-from-classmap": [
44             "/Tests/"
45         ]
46     },
47     "minimum-stability": "dev",
48     "extra": {
49         "branch-alias": {
50             "dev-master": "3.4-dev"
51         }
52     }
53 }