-
Notifications
You must be signed in to change notification settings - Fork 211
/
composer.json
executable file
·53 lines (53 loc) · 1.24 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
{
"name": "adyen/module-payment",
"description": "Official Magento2 Plugin to connect to Payment Service Provider Adyen.",
"type": "magento2-module",
"version": "9.11.0",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": ">=8.1",
"adyen/php-api-library": "^20.4.0",
"adyen/php-webhook-module": "^1",
"magento/framework": ">=103.0.4",
"magento/module-vault": ">=101.2.4",
"magento/module-multishipping": ">=100.4.4",
"magento/module-graph-ql": ">=100.4.4",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.6.1",
"magento/magento-coding-standard": "*",
"squizlabs/php_codesniffer": "~3.8.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Adyen\\Payment\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Adyen\\Payment\\Tests\\": "Test"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit -c Test/phpunit.xml"
]
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}