forked from mercadopago/cart-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
31 lines (31 loc) · 914 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
{
"require-dev": {
"woocommerce/woocommerce-sniffs": "^0.1.0",
"phpunit/phpunit": "^7",
"php-stubs/wordpress-globals": "^0.2.0",
"giacocorsiglia/wordpress-stubs": "^5.1",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"phpcs": [
"Composer\\Config::disableProcessTimeout",
"phpcs --standard=phpcs.xml includes templates woocommerce-mercadopago.php "
],
"phpcbf": [
"Composer\\Config::disableProcessTimeout",
"phpcbf --standard=phpcs.xml includes templates woocommerce-mercadopago.php "
],
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
]
},
"require": {
"ext-curl": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}