-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·57 lines (57 loc) · 1.44 KB
/
composer.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.44 KB
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
{
"name": "adyen/module-payment",
"description": "Official Magento2 Plugin to connect to Payment Service Provider Adyen.",
"type": "magento2-module",
"version": "10.10.1",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~8.2.0||~8.3.0||~8.4.0||~8.5.0",
"adyen/php-api-library": "^28.1.0",
"adyen/php-webhook-module": "^1.1.0",
"magento/framework": ">=103.0.8",
"magento/module-vault": ">=101.2.8",
"magento/module-multishipping": ">=100.4.8",
"magento/module-graph-ql": ">=100.4.8",
"magento/module-instant-purchase": ">=100.4.7",
"magento/module-checkout-agreements": ">=100.4.7",
"magento/module-csp": ">=100.4.7",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.9",
"magento/magento-coding-standard": "*",
"squizlabs/php_codesniffer": "~3.13.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
}
}
}