-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.15 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "ecomprocessing/opencart4-ecp-plugin",
"description": "E-Comprocessing Gateway Module for OpenCart",
"type": "opencart-module",
"license": "GPL-2.0",
"version": "1.2.0",
"authors": [
{
"name": "ecomprocessing",
"email": "shopping_carts@e-comprocessing.com",
"homepage":"https://e-comprocessing.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpmd/phpmd": "^2.15"
},
"scripts": {
"pack": [
"bin/pack-ocmod.sh"
],
"php-cs": [
"vendor/bin/phpcs . --standard=.phpcs.xml"
],
"php-md": [
"vendor/bin/phpmd . ansi .phpmd.xml --not-strict"
],
"php-cs-jenkins": [
"vendor/bin/phpcs . --standard=.phpcs.xml --report=checkstyle --report-file=phpcs_report.xml"
],
"php-md-jenkins": [
"vendor/bin/phpmd . xml .phpmd.xml --reportfile phpmd_report.xml --not-strict --ignore-violations-on-exit"
],
"styles": [
"@php-cs",
"@php-md"
]
}
}