This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.json
129 lines (128 loc) · 5.54 KB
/
plugin.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "HeidelpayMGW",
"marketplaceName":
{
"de": "heidelpay merchant gateway",
"en": "heidelpay merchant gateway"
},
"namespace": "HeidelpayMGW",
"type": "payment",
"version": "1.0.3",
"license": "Apache-2.0",
"isClosedSource": false,
"price": 0.00,
"description": "plentymarkets integration for heidelpay merchant gateway",
"shortDescription": {
"de": "heidelpay integration into plentymarkets",
"en": "heidelpay integration into plentymarkets"
},
"categories": ["3519"],
"keywords": ["heidelpay", "plentymarkets", "plugin", "payment", "payment method", "credit card", "debit card", "invoice"],
"author": "heidelpay GmbH",
"authorIcon": "icon_author_xs.png",
"pluginIcon": "icon_plugin.png",
"email" : "[email protected]",
"phone" : "+49 (0)6221/6471-100",
"serviceProvider": "HeidelpayMGW\\Providers\\PluginServiceProvider",
"require": {
"IO": "~5.0.0",
"Ceres": "~5.0.0"
},
"dependencies":{
"heidelpay/heidelpay-php":"1.2.7.0"
},
"runOnBuild": [
"HeidelpayMGW\\Migrations\\CreatePluginSettingTable",
"HeidelpayMGW\\Migrations\\CreateInvoiceSettingTable",
"HeidelpayMGW\\Migrations\\CreatePaymentInformationTable",
"HeidelpayMGW\\Migrations\\CreateInvoiceGuaranteedSettingTable",
"HeidelpayMGW\\Migrations\\CreateInvoiceGuaranteedB2bSettingTable",
"HeidelpayMGW\\Migrations\\CreateCardsSettingTable",
"HeidelpayMGW\\Migrations\\CreateSepaDirectDebitSettingTable",
"HeidelpayMGW\\Migrations\\CreateSepaDirectDebitGuaranteedSettingTable",
"HeidelpayMGW\\Migrations\\CreatePaypalSettingTable",
"HeidelpayMGW\\Migrations\\CreateIdealSettingTable",
"HeidelpayMGW\\Migrations\\CreateSofortSettingTable",
"HeidelpayMGW\\Migrations\\CreateFlexiPayDirectSettingTable"
],
"dataProviders":
[
{
"key" :"HeidelpayMGW\\Containers\\InvoiceInformationContainer",
"name" :"InvoiceInformationContainer",
"description" :"Display additional data in order confirmation page",
"multiple" : false,
"defaultLayoutContainer": "Ceres::OrderConfirmation.AdditionalPaymentInformation"
},
{
"key" :"HeidelpayMGW\\Containers\\InvoiceInformationContainer",
"name" :"InvoiceInformationContainer",
"description" :"Display additional data in order confirmation page",
"multiple" : false,
"defaultLayoutContainer": "Ceres::MyAccount.OrderHistoryPaymentInformation"
},
{
"key" :"HeidelpayMGW\\Containers\\HeidelpayScriptsContainer",
"name" :"HeidelpayScriptsContainer",
"description" :"heidelpay MGW scripts",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Script.AfterScriptsLoaded"
},
{
"key" :"HeidelpayMGW\\Containers\\BuyNowButtonContainer",
"name" :"BuyNowButtonContainer",
"description" :"heidelpay MGW BuyNow button",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.PlaceOrder"
},
{
"key" :"HeidelpayMGW\\Containers\\BirthDateContainer",
"name" :"BirthDateContainer",
"description" :"heidelpay MGW Date of birth modal",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.AfterPaymentList"
},
{
"key" :"HeidelpayMGW\\Containers\\InvoiceGuaranteedB2bContainer",
"name" :"InvoiceGuaranteedB2bContainer",
"description" :"heidelpay MGW B2B customer modal",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.AfterPaymentList"
},
{
"key" :"HeidelpayMGW\\Containers\\CardsContainer",
"name" :"CardsContainer",
"description" :"heidelpay Credit/Debit card form",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.AfterPaymentList"
},
{
"key" :"HeidelpayMGW\\Containers\\SepaDirectDebitContainer",
"name" :"SepaDirectDebitContainer",
"description" :"heidelpay SEPA Direct Debit form",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.AfterPaymentList"
},
{
"key" :"HeidelpayMGW\\Containers\\SepaDirectDebitGuaranteedContainer",
"name" :"SepaDirectDebitGuaranteedContainer",
"description" :"heidelpay SEPA Direct Debit guaranteed form",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.AfterPaymentList"
},
{
"key" :"HeidelpayMGW\\Containers\\PaypalContainer",
"name" :"PaypalContainer",
"description" :"heidelpay PayPal form",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.AfterPaymentList"
},
{
"key" :"HeidelpayMGW\\Containers\\IdealContainer",
"name" :"IdealContainer",
"description" :"heidelpay iDEAL form",
"multiple" : false,
"defaultLayoutContainer": "Ceres::Checkout.AfterPaymentList"
}
]
}