forked from Adyen/adyen-magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·43 lines (43 loc) · 1.09 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
{
"name": "adyen/module-payment",
"description": "Official Magento2 Plugin to connect to Payment Service Provider Adyen.",
"type": "magento2-module",
"version": "1.0.0.1",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"repositories": [
{
"adyen": {
"type": "vcs",
"url": "[email protected]:Adyen/adyen-php-api-library.git"
}
}
],
"require": {
"php": "~5.5.0|~5.6.0|~7.0.0",
"magento/module-config": "100.0.*",
"magento/module-store": "100.0.*",
"magento/module-checkout": "100.0.*",
"magento/module-catalog": "100.0.*",
"magento/module-sales": "100.0.*",
"magento/module-customer": "100.0.*",
"magento/module-payment": "100.0.*",
"magento/module-quote": "100.0.*",
"magento/module-backend": "100.0.*",
"magento/module-directory": "100.0.*",
"magento/module-theme": "100.0.*",
"magento/framework": "100.0.*",
"magento/magento-composer-installer": "*",
"adyen/php-api-library": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Adyen\\Payment\\": ""
}
}
}