-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.45 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
{
"name": "codesolz/ultimate-push-notifications",
"description": "Ultimate Push Notifications - Wordpress plugin",
"type": "composer-plugin",
"license": "mit",
"authors": [
{
"name": "M.Tuhin",
"email": "info@codesolz.net"
}
],
"scripts": {
"build" : "composer install --no-dev",
"phpcs" : "php ./vendor/bin/phpcs -i ",
"phpcsCheckError" : "php ./vendor/bin/phpcs --standard=WordPress .",
"phpcsFixError" : "php ./vendor/bin/phpcbf --standard=WordPress ./core ./ultimate-push-notifications.php",
"phpcsCheckPHPDetail" : "php ./vendor/bin/phpcs --standard=PHPCompatibilityWP -p ./core --runtime-set testVersion 7.0-",
"phpcsFixPHPError" : "php ./vendor/bin/phpcbf --standard=PHPCompatibilityWP -p ./core --runtime-set testVersion 7.0-"
},
"autoload": {
"psr-4" : {
"UltimatePushNotifications\\" : "core/"
}
},
"require": {
"php" : ">=7.0.0"
},
"minimum-stability": "dev",
"require-dev": {
"wp-coding-standards/wpcs": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"tuhin18003/advance-var-dumper": "dev-master"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}