-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 793 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 793 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
30
{
"name": "assertwell/shellcheck",
"description": "Expose ShellCheck as a vendor binary for PHP projects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Steve Grunwell",
"homepage": "https://stevegrunwell.com"
}
],
"support": {
"issues": "https://github.com/assertwell/shellcheck/issues",
"source": "https://github.com/assertwell/shellcheck"
},
"bin": [
"bin/shellcheck"
],
"scripts": {
"test": "shellcheck bin/shellcheck"
},
"scripts-descriptions": {
"test": "Run ShellCheck against the ShellCheck proxy script"
},
"minimum-stability": "stable",
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}