-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.32 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
{
"name": "brocksinet/hosted-checkout",
"description": "BrocksiNet - Hosted Checkout plugin",
"type": "shopware-platform-plugin",
"version": "0.0.1",
"license": "MIT",
"require": {
"shopware/core": "6.5.* || 6.6.*"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"extra": {
"shopware-plugin-class": "BrocksiNet\\HostedCheckout",
"description": {
"de-DE": "Event Subscriber zur Übergabe von Warenkörben von headless Frontends an den default Checkout (Storefront). Es sind ggf. weitere Template-Anpassungen für den Checkout notwendig.",
"en-GB": "Event subscriber to pass shopping cart tokens from headless frontends to the hosted storefront checkout. This is the basic feature and may require additional custom template changes."
},
"manufacturerLink": {
"de-DE": "https://www.brocksi.net/",
"en-GB": "https://www.brocksi.net/"
},
"supportLink": {
"de-DE": "https://www.brocksi.net/",
"en-GB": "https://www.brocksi.net/"
},
"label": {
"de-DE": "powered by BrocksiNet",
"en-GB": "powered by BrocksiNet"
}
},
"autoload": {
"psr-4": {
"BrocksiNet\\": "src/"
}
}
}