-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
52 lines (52 loc) · 1.58 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
{
"name": "adyen/adyen-shopware6",
"authors": [
{
"name": "Adyen"
}
],
"description": "Official Shopware 6 Plugin to connect to Payment Service Provider Adyen",
"version": "4.1.3",
"type": "shopware-platform-plugin",
"license": "MIT",
"require": {
"shopware/core": "~6.6.0",
"shopware/storefront": "~6.6.0",
"adyen/php-api-library": "^20.2.0",
"adyen/php-webhook-module": "^1",
"ext-json": "*"
},
"extra": {
"shopware-plugin-class": "Adyen\\Shopware\\AdyenPaymentShopware6",
"label": {
"en-GB": "Adyen Payment",
"de-DE": "Adyen Payment"
},
"description": {
"en-GB": "Official Shopware 6 Plugin to connect to Payment Service Provider Adyen",
"de-DE": "Offizielles Shopware 6 Plugin zur Verbindung mit dem Zahlungsdienstleister Adyen"
},
"manufacturerLink": {
"en-GB": "https://docs.adyen.com/plugins",
"de-DE": "https://docs.adyen.com/plugins"
},
"supportLink": {
"en-GB": "https://support.adyen.com/hc/en-us/requests/new?ticket_form_id=360000705420",
"de-DE": "https://support.adyen.com/hc/en-us/requests/new?ticket_form_id=360000705420"
}
},
"autoload": {
"psr-4": {
"Adyen\\Shopware\\": "src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^10.4"
},
"config": {
"allow-plugins": {
"symfony/*": true
}
}
}