blob: e7af3a752bf0b90af81527bd3895e0ad37c8edc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
"name": "stecman/symfony-console-completion",
"description": "Automatic BASH completion for Symfony Console Component based applications.",
"license": "MIT",
"authors": [
{
"name": "Stephen Holdaway",
"email": "stephen@stecman.co.nz"
}
],
"require": {
"php": ">=5.3.2",
"symfony/console": "~2.3 || ~3.0 || ~4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
},
"autoload": {
"psr-4": {
"Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.10.x-dev"
}
}
}
|