forked from amzn/amazon-payments-magento-2-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.2 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
{
"name": "amzn/amazon-pay-and-login-magento-2-module",
"description": "Official Magento2 Plugin to integrate with Amazon Pay and Login with Amazon",
"type": "magento2-module",
"version": "4.0.3",
"license": [
"Apache-2.0"
],
"require-dev": {
"guzzlehttp/guzzle": "^6.2.0",
"phpunit/phpunit": "4.1.0"
},
"require": {
"php": "~7.3.0||~7.4.0",
"magento/framework": "*",
"magento/module-sales": "*",
"magento/module-checkout": "*",
"magento/module-payment": "*",
"magento/module-eav": "*",
"magento/module-developer": "*",
"magento/module-config": "*",
"magento/module-backend": "*",
"magento/module-quote": "*",
"magento/module-customer": "*",
"magento/module-store": "*",
"amzn/amazon-pay-sdk-php": "^3.4.1"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"bin-dir": "bin"
},
"autoload": {
"files": [
"src/Core/registration.php",
"src/Login/registration.php",
"src/Payment/registration.php"
],
"psr-4": {
"Amazon\\Core\\": "src/Core",
"Amazon\\Login\\": "src/Login",
"Amazon\\Payment\\": "src/Payment"
}
}
}