-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "asispts/ptscs",
"description": "PSR-12 coding standard with additional strict rules",
"type": "phpcodesniffer-standard",
"license": "MIT",
"authors": [
{
"name": "Asis Pattisahusiwa",
"email": "asispts@gmail.com"
}
],
"keywords": [
"phpcs",
"PSR-12",
"coding-style",
"coding-standard",
"phpcs-standard"
],
"homepage": "https://github.com/asispts/ptscs",
"support": {
"issues": "https://github.com/asispts/ptscs/issues"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Ptscs\\": "ptscs"
}
},
"autoload-dev": {
"psr-4": {
"Ptscs\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.2",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.7"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^8.5.14|^9.5|^10.0"
}
}