-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
27 lines (27 loc) · 1.05 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
{
"name": "lifterlms/lifterlms-gateway-sample",
"description": "A sample LifterLMS Payment Gateway integration plugin designed",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Team LifterLMS",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require-dev": {
"lifterlms/lifterlms-cs": "dev-master"
},
"scripts": {
"config-cs": [
"\"vendor/bin/phpcs\" --config-set installed_paths ../../../vendor/wp-coding-standards/wpcs,../../../vendor/lifterlms/lifterlms-cs,../../../vendor/phpcompatibility/php-compatibility,../../../vendor/phpcompatibility/phpcompatibility-paragonie,../../../vendor/phpcompatibility/phpcompatibility-wp",
"\"vendor/bin/phpcs\" --config-set default_stanadrd LifterLMS"
],
"check-cs": "\"vendor/bin/phpcs\" --colors",
"check-cs-errors": "\"vendor/bin/phpcs\" --colors --error-severity=1 --warning-severity=6",
"fix-cs": "\"vendor/bin/phpcbf\"",
"post-install-cmd": "composer config-cs",
"post-update-cmd": "composer config-cs"
}
}