-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.52 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.52 KB
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
44
45
46
47
48
49
50
51
52
53
{
"name": "max-antipin/php-code-sniffs",
"description": "Coding Standard for PHP_CodeSniffer by Max Antipin provides sniffs with additional checks.",
"type": "phpcodesniffer-standard",
"keywords": [
"phpcs",
"dev",
"standards",
"static analysis"
],
"prefer-stable": true,
"authors": [
{
"name": "Maxim Antipin",
"email": "max.v.antipin@gmail.com",
"homepage": "https://github.com/max-antipin",
"role": "Developer"
}
],
"license": "Unlicense",
"require": {
"php": ">=8.4",
"squizlabs/php_codesniffer": "^4",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpcsstandards/phpcsdevtools": "^1.2",
"max-antipin/packagist-export-ignore": "^1",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"MaxAntipin\\PHPCS\\Standards\\AntipinCS\\Sniffs\\": "AntipinCS/Sniffs/",
"MaxAntipin\\PHPCS\\Lib\\": "Lib/"
},
"exclude-from-classmap": [
"/AntipinCS/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"PHP_CodeSniffer\\": "vendor/squizlabs/php_codesniffer/src/",
"PHP_CodeSniffer\\Tests\\": "vendor/squizlabs/php_codesniffer/tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"lock": false
}
}