-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
39 lines (39 loc) · 1.24 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
{
"name": "claudiosanches/woocommerce-pagseguro",
"description": "Includes PagSeguro as a payment gateway to WooCommerce.",
"homepage": "https://github.com/claudiosanches/woocommerce-pagseguro",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Claudio Sanches",
"homepage": "https://claudiosanches.com",
"role": "Developer"
}
],
"support": {
"forum": "https://wordpress.org/support/plugin/woocommerce-pagseguro",
"issues": "https://github.com/claudiosanches/woocommerce-pagseguro/issues/",
"source": "https://github.com/claudiosanches/woocommerce-pagseguro"
},
"require": {
"php": ">=7.3"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0"
},
"scripts": {
"phpcs": [
"phpcs --standard=phpcs.ruleset.xml"
],
"makepot": [
"wp i18n make-pot . languages/woocommerce-extra-checkout-fields-for-brazil.pot --exclude=vendor/node_modules"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}