-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
37 lines (37 loc) · 985 Bytes
/
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
{
"name": "adyen/module-hyva-checkout",
"description": "Adyen Integration with Hyva Checkout",
"type": "magento2-module",
"version": "1.2.2",
"license": "MIT",
"require": {
"adyen/module-payment": "^9.6.1",
"hyva-themes/magento2-default-theme": "^1.3",
"hyva-themes/magento2-hyva-checkout": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~9.6.1",
"magento/magento-coding-standard": "*",
"squizlabs/php_codesniffer": "~3.8.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Adyen\\Hyva\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}