-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 914 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
31
32
33
34
{
"name": "terminus-plugin-project/terminus-autocomplete-plugin",
"description": "Autocomplete - A Terminus plugin to help provide tab completion for commands.",
"authors": [
{
"name": "Ed Reel",
"email": "[email protected]",
"homepage": "https://github.com/uberhacker",
"role": "Developer"
}
],
"type": "terminus-plugin",
"keywords": [
"pantheon",
"terminus",
"autocomplete",
"plugin"
],
"support": {
"issues": "https://github.com/terminus-plugin-project/terminus-autocomplete-plugin/issues"
},
"license": "MIT",
"require": {
"php": "^5.5 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": { "TerminusPluginProject\\TerminusAutocomplete\\": "src" }
},
"extra": {
"terminus": {
"compatible-version": "^2"
}
}
}