-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "submitty/php-codesniffer",
"type": "phpcodesniffer-standard",
"description": "Submitty PHP CodeSniffer Standard",
"version": "3.0.1",
"require": {
"php": ">=8.1",
"squizlabs/php_codesniffer": "^3.5.4",
"slevomat/coding-standard": "^8.15.0"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "^9.3.4",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"suggest": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically."
},
"autoload": {
"psr-4": {
"SubmittyStandard\\": "SubmittyStandard"
}
},
"license": "MIT",
"authors": [
{
"name": "Matthew Peveler",
"email": "[email protected]"
}
]
}