-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
40 lines (40 loc) · 1.38 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
{
"name": "coinmarketstats/woo-commerce_alt-coin_payment_gateway",
"description": "woocommerce altcoin payment gateway",
"type": "composer-plugin",
"license": "mit",
"authors": [
{
"name": "CoinMarketStats",
"email": "[email protected]"
}
],
"scripts": {
"build" : "composer install --no-dev",
"phpcs" : "php ./vendor/bin/phpcs -i ",
"phpcsCheckError" : "php ./vendor/bin/phpcs --standard=WordPress ./core ./woocommerce-altcoin-payment.php",
"phpcsFixError" : "php ./vendor/bin/phpcbf --standard=WordPress ./core ./woocommerce-altcoin-payment.php",
"phpcsCheckPHPDetail" : "php ./vendor/bin/phpcs --standard=PHPCompatibilityWP -p ./core --runtime-set testVersion 7.0-"
},
"autoload": {
"psr-4" : {
"WooGateWayCoreLib\\" : "core/"
}
},
"require": {
"php" : ">=7.0.0"
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"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"
}
}