This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
70 lines (70 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "mercadopagoadquirencia/payment-magento",
"description": "MercadoPago - Payment for Magento 2",
"require": {
"php": "~7.3.0||~7.4.0||~8.1.0",
"magento/framework": ">=103.0",
"magento/module-customer": ">=103.0.0",
"magento/module-config": "101.2.*",
"magento/module-eav": "102.1.*",
"magento/module-sales": "103.0.*",
"magento/module-directory": "100.4.*",
"magento/module-checkout": "100.4.*",
"magento/module-backend": "102.0.*",
"magento/module-theme": "101.1.*",
"magento/module-ui": "101.2.*",
"magento/module-payment": "^100.3",
"magento/module-vault": "101.*",
"magento/zendframework1": ">=1.14.2",
"ext-json": "*",
"ext-gd": "*",
"ext-zip": "*"
},
"type": "magento2-module",
"authors": [
{
"name": "Bruno Elisei",
"email": "[email protected]"
}
],
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MercadoPago\\PaymentMagento\\": ""
}
},
"require-dev": {
"magento/magento-coding-standard": "*",
"phpmd/phpmd": "^2.13",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.6.8"
},
"scripts": {
"post-install-cmd": "vendor/bin/phpcs --config-set installed_paths ../../..,../../phpcompatibility/php-compatibility/PHPCompatibility",
"post-update-cmd": "vendor/bin/phpcs --config-set installed_paths ../../..,../../phpcompatibility/php-compatibility/PHPCompatibility"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz/"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false,
"phpstan/extension-installer": true
}
}
}