-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·46 lines (46 loc) · 1.02 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
{
"name": "adyen/adyen-magento2-expresscheckout",
"description": "Official Adyen Magento2 plugin to add express payment method shortcuts.",
"type": "magento2-module",
"version": "2.4.1",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"adyen/module-payment": "^9.8.1"
},
"require-dev": {
"phpunit/phpunit": "~9.6.1",
"magento/magento-coding-standard": "*",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Adyen\\ExpressCheckout\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Adyen\\ExpressCheckout\\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
}
}
}