-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 769 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 769 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
{
"name": "wakebit/coding-standard",
"type": "phpcodesniffer-standard",
"description": "Wakebit Coding Standard",
"keywords": [
"coding standard",
"phpcs",
"codesniffer"
],
"license": "BSD-3-Clause",
"require": {
"php": "^7.4 || ^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || v1.0",
"laminas/laminas-coding-standard": "^3.0",
"slevomat/coding-standard": "^8.15.0",
"squizlabs/php_codesniffer": "^3.10.3"
},
"autoload": {
"psr-4": {
"WakebitCodingStandard\\": "src/WakebitCodingStandard"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}