-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 743 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 743 Bytes
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
{
"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": ">=8.1",
"symfony/console": "~6.4 || ^7.1 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"dms/phpunit-arraysubset-asserts": "^0.4.0"
},
"autoload": {
"psr-4": {
"Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.14.x-dev"
}
}
}