-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.59 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ecomprocessing/woocommerce-ecomprocessing-plugin",
"description": "E-Comprocessing Payment Gateway for WooCommerce",
"minimum-stability": "stable",
"license": "GPL-2.0",
"version": "1.17.0",
"authors": [
{
"name": "ecomprocessing",
"email": "shopping_carts@e-comprocessing.com",
"homepage":"https://e-comprocessing.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.1",
"squizlabs/php_codesniffer": "^3.9",
"phpmd/phpmd" : "^2.15"
},
"scripts": {
"pack": [
"@gen-language",
"@build",
"bin/pack"
],
"gen-language": [
"msgfmt languages/woocommerce-ecomprocessing-en_GB.po -o languages/woocommerce-ecomprocessing-en_GB.mo",
"msgfmt languages/woocommerce-ecomprocessing-en_US.po -o languages/woocommerce-ecomprocessing-en_US.mo"
],
"build": [
"npm install",
"npm run build"
],
"php-cs": [
"vendor/bin/phpcs --standard=./.phpcs.xml --report=full --colors ./"
],
"php-cs-jenkins": [
"vendor/bin/phpcs -d memory_limit=-1 --standard=./.phpcs.xml --report=checkstyle --report-file=phpcs_report.xml ./"
],
"php-md": [
"vendor/bin/phpmd --color ./ ansi ./.phpmd.xml --not-strict"
],
"php-md-jenkins": [
"vendor/bin/phpmd ./ xml ./.phpmd.xml --reportfile=phpmd_report.xml --not-strict --ignore-violations-on-exit"
],
"styles": [
"@php-cs",
"@php-md"
]
}
}