-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.92 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
{
"name": "ecomprocessing/prestashop-ecp-plugin",
"description": "E-Comprocessing Payment Gateway for Prestashop",
"type": "prestashop-module",
"version": "2.2.0",
"license": "GPL-2.0",
"config": {
"prepend-autoloader": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"authors": [
{
"name": "ecomprocessing",
"email": "shopping_carts@e-comprocessing.com",
"homepage":"https://e-comprocessing.com"
}
],
"minimum-stability": "stable",
"require": {
"genesisgateway/genesis_php": "2.0.1"
},
"require-dev": {
"prestashop/php-dev-tools": "^4.3",
"squizlabs/php_codesniffer": "^3.9",
"phpmd/phpmd": "^2.15",
"prestashop/autoindex": "^2.1",
"slevomat/coding-standard": "^8.14"
},
"scripts": {
"pack": [
"bin/pack"
],
"php-cs": [
"vendor/bin/phpcs --standard=./.phpcs.xml --report=full --colors ./"
],
"php-cs-jenkins": [
"vendor/bin/phpcs --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"
],
"autoindex": [
"vendor/bin/autoindex prestashop:add:index"
],
"header-stamp": [
"vendor/bin/header-stamp --license=header_stamp.txt --exclude=vendor,translations --extensions=php"
]
},
"autoload": {
"psr-4": {
"Ecomprocessing\\Genesis\\": "src/"
},
"classmap": ["controllers/front"]
}
}