-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.12 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": "ofbeaton/granite-php",
"description": "Opinionated PHP Coding Style enforcement for PHP",
"keywords": ["lint", "Coding Style", "Code Style", "Code Sniffer", "PHP_CodeSniffer"],
"homepage": "https://github.com/ofbeaton/granite-php",
"license": "MIT",
"authors": [
{
"name": "Finlay Beaton",
"email": "ofbeaton@gmail.com"
},
{
"name": "Granite Community",
"homepage": "https://github.com/ofbeaton/granite-php/graphs/contributors"
}
],
"suggest": {
"squizlabs/php_codesniffer": "check and fix granite code style",
"jakub-onderka/php-parallel-lint": "speed up `php -l` check",
"jakub-onderka/php-console-highlighter": "Highlight syntax for php-parallel-lint"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"jakub-onderka/php-parallel-lint": "^1.0",
"jakub-onderka/php-console-highlighter": "^0.4.0"
},
"config": {
"bin-dir": "vbin"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}