-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
30 lines (30 loc) · 843 Bytes
/
composer.json
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
29
30
{
"name": "bamarni/symfony-console-autocomplete",
"description": "Shell completion for Symfony Console based scripts",
"license": "MIT",
"require": {
"php": "^7.1|^8.0",
"ext-simplexml": "*",
"symfony/console": "^2.5|^3|^4|^5|^6",
"symfony/process": "^2.5|^3|^4|^5|^6"
},
"require-dev": {
"symfony/console": "2.8.*"
},
"authors": [
{
"name": "Bilal Amarni",
"email": "bilal.amarni@gmail.com",
"role": "Lead developer"
},
{
"name": "Richard Quadling",
"email": "RQuadling@gmail.com",
"role": "Contributing developer"
}
],
"bin": [ "bin/symfony-autocomplete" ],
"autoload": {
"psr-4": { "Bamarni\\Symfony\\Console\\Autocomplete\\": "src/" }
}
}