-
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) · 765 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 765 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": "justintime50/phpcs-short-scalar-types",
"description": "PHPCS sniff to enforce short scalar type names in comments (bool, int, etc.)",
"version": "1.0.0",
"type": "phpcodesniffer-standard",
"license": "MIT",
"authors": [
{
"name": "Justintime50",
"email": "39606064+Justintime50@users.noreply.github.com"
}
],
"scripts": {
"fix": "./bin/phpcbf --standard=ShortTypes tests/ShortScalarTypesSniffTest.inc",
"test": "./bin/phpcs --standard=ShortTypes tests/ShortScalarTypesSniffTest.inc"
},
"require": {
"php": ">=7.2",
"squizlabs/php_codesniffer": ">=4.0"
},
"require-dev": {},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"ShortTypes\\": "ShortTypes/"
}
}
}