-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 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": "budpay/budpay-woocommerce",
"description": "Budpay for WooCommerce",
"type": "wordpress-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Budpay\\Woocommerce\\": "inc/"
}
},
"authors": [
{
"name": "Budpay Devs"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"makepot-audit": [
"wp --allow-root i18n make-pot . --exclude=\".github,.wordpress-org,vendor,bin,node_modules,tests\" --slug=budpay --debug"
],
"makepot": [
"@makepot-audit --skip-audit"
]
},
"extra": {
"scripts-description": {
"makepot-audit": "Generate i18n/languages/budpay.pot file and run audit",
"makepot": "Generate i18n/languages/budpay.pot file"
}
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0",
"woocommerce/woocommerce-sniffs": "^1.0"
}
}