-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·55 lines (55 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ebanx/magento2-gateway-ebanx",
"description": "Oficial EBANX Magento2 Payment Gateway",
"version": "1.7.0",
"type": "magento2-module",
"license": "Apache-2.0",
"require": {
"php": "~7.4",
"ext-gd": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-bcmath": "*",
"ext-intl": "*",
"ext-soap": "*",
"ext-xsl": "*",
"ext-zip": "*",
"ext-sockets": "*",
"ebanx/benjamin": "^1.18.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"magento-ecg/coding-standard": ">=3.0",
"phpunit/phpunit": "*",
"mockery/mockery": "dev-master",
"magento/framework": "~103.0.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"extra": {
"magento-force": "override"
},
"authors":[
{
"name": "EBANX",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"DigitalHub\\Ebanx\\": ""
}
},
"scripts": {
"phpcs": "php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=./vendor/magento-ecg/coding-standard/Ecg ./vendor/digitalhub/ebanx"
}
}