-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
executable file
·60 lines (60 loc) · 1.79 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
{
"name": "amzn/amazon-pay-magento-2-module",
"description": "Official Magento2 Plugin to integrate with Amazon Pay",
"type": "magento2-module",
"version": "5.18.0",
"license": [
"Apache-2.0"
],
"replace": {
"amzn/amazon-pay-and-login-magento-2-module": "*",
"amzn/amazon-pay-and-login-with-amazon-core-module": "*",
"amzn/login-with-amazon-module": "*",
"amzn/amazon-pay-module": "*",
"amzn/amazon-pay-v2-magento-2-module": "*",
"amzn/amazon-payments-magento-2-plugin": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.2.0"
},
"require": {
"php": "~7.0.13||~7.1.0||~7.2.0||~7.3.0||~7.4.0||~8.0.0||~8.1.0||~8.2.0||~8.3.0",
"magento/framework": "^102.0||^103.0",
"magento/module-sales": "^100.0||^101.0||^102.0||^103.0",
"magento/module-checkout": "^100.0",
"magento/module-payment": "^100.0",
"magento/module-eav": "^102.0",
"magento/module-developer": "^100.0",
"magento/module-config": "^101.0",
"magento/module-backend": "^101.0||^102.0",
"magento/module-quote": "^101.0",
"magento/module-customer": "^102.0||^103.0",
"magento/module-store": "^101.0",
"magento/module-catalog": "^103.0||^104.0",
"magento/module-configurable-product": "^100.0",
"magento/module-directory": "^100.0",
"magento/module-media-storage": "^100.0",
"magento/module-paypal": "^100.0||^101.0",
"magento/module-vault": "^100.1||^101.2",
"phpseclib/phpseclib": "~2.0||~3.0",
"amzn/amazon-pay-api-sdk-php": "^2.2",
"aws/aws-php-sns-message-validator": "^1.5"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"bin-dir": "bin"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Amazon\\Pay\\": ""
}
}
}