-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 1.02 KB
/
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
35
{
"name": "obliviousharmony/vscode-phpcs-integration",
"description": "The custom PHPCS integration for the obliviousharmony.vscode-php-codesniffer VS Code extension.",
"homepage": "https://github.com/ObliviousHarmony/vscode-php-codesniffer",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Christopher Allford",
"homepage": "https://github.com/ObliviousHarmony"
}
],
"keywords": [
"phpcs",
"phpcbf",
"vscode",
"vscode-extension",
"vscode-phpcs",
"vscode-phpcbf"
],
"readme": "assets/phpcs-integration/README.md",
"prefer-stable": true,
"minimum-stability": "dev",
"require-dev": {
"squizlabs/php_codesniffer": "^3.1"
},
"autoload": {
"psr-4": {
"ObliviousHarmony\\VSCodePHPCSIntegration\\": "assets/phpcs-integration"
}
},
"scripts": {
"lint": "phpcs --standard=psr12 -sp assets",
"lint:fix": "phpcbf --standard=psr12 -sp assets"
}
}