-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 870 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 870 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "spaze/phpcs-phar",
"description": "PHP_CodeSniffer phar releases, automated and always up-to-date",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Michal Špaček",
"homepage": "https://www.michalspacek.com",
"email": "mail@michalspacek.cz"
}
],
"keywords": [
"dev"
],
"replace": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcsstandards/php_codesniffer": "4.0.1",
"squizlabs/php_codesniffer": "4.0.1"
},
"require": {
"php": ">=7.2.0",
"composer-runtime-api": "^2.1"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"php-parallel-lint/php-console-highlighter": "^1.0"
},
"autoload": {
"psr-4": {
"Spaze\\PHPCSPhar\\": "src"
}
},
"bin": [
"phpcbf",
"phpcs"
],
"scripts": {
"lint": "vendor/bin/parallel-lint --colors phpcs phpcbf",
"test": [
"@lint"
]
}
}