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",
|
20
|
"symfony/polyfill-mbstring": "~1.0"
|
21
|
},
|
22
|
"require-dev": {
|
23
|
"symfony/event-dispatcher": "~2.8|~3.0",
|
24
|
"symfony/process": "~2.8|~3.0",
|
25
|
"psr/log": "~1.0"
|
26
|
},
|
27
|
"suggest": {
|
28
|
"symfony/event-dispatcher": "",
|
29
|
"symfony/process": "",
|
30
|
"psr/log": "For using the console logger"
|
31
|
},
|
32
|
"autoload": {
|
33
|
"psr-4": { "Symfony\\Component\\Console\\": "" },
|
34
|
"exclude-from-classmap": [
|
35
|
"/Tests/"
|
36
|
]
|
37
|
},
|
38
|
"minimum-stability": "dev",
|
39
|
"extra": {
|
40
|
"branch-alias": {
|
41
|
"dev-master": "3.0-dev"
|
42
|
}
|
43
|
}
|
44
|
}
|