-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 963 Bytes
/
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
{
"name": "lifterlms/lifterlms-cs",
"description": "PHP_CodeSniffer rules for LifterLMS projects",
"type": "phpcodesniffer-standard",
"license": "MIT",
"authors": [
{
"name": "Team LifterLMS",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"wp-coding-standards/wpcs": "^3.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"scripts": {
"config-set" : [
"\"vendor/bin/phpcs\" --config-set default_standard LifterLMS"
],
"check-cs": [
"\"vendor/bin/phpcs\" --runtime-set testVersion 7.4-"
],
"post-install-cmd": "@config-set",
"post-update-cmd": "@config-set"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}