-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.2 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": "shivapoudel/woocommerce-esewa",
"description": "WooCommerce eSewa is a Nepali payment gateway for WooCommerce.",
"homepage": "https://github.com/shivapoudel/woocommerce-esewa/",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"composer/installers": "2.1.0"
},
"require-dev": {
"woocommerce/woocommerce-sniffs": "0.1.3",
"wp-cli/i18n-command": "2.3.0"
},
"scripts": {
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
],
"makepot-audit": [
"wp --allow-root i18n make-pot . --exclude=\".github,.wordpress-org,bin,node_modules\" --slug=woocommerce-esewa"
],
"makepot": [
"@makepot-audit --skip-audit"
]
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier",
"makepot-audit": "Generate langauges/woocommerce-esewa.pot file and run audit",
"makepot": "Generate langauges/woocommerce-esewa.pot file"
}
}
}