-
Notifications
You must be signed in to change notification settings - Fork 12
/
components.xml
155 lines (153 loc) · 10.5 KB
/
components.xml
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<!-- Components -->
<service id="adyen_payment.components.data_conversion" class="AdyenPayment\Components\DataConversion"/>
<service class="AdyenPayment\Components\Calculator\PriceCalculationService" id="adyen_payment.components.calculator.price_calculation_service"/>
<service id="adyen_payment.components.notification_processor" class="AdyenPayment\Components\NotificationProcessor">
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="models"/>
<argument type="service" id="events"/>
</service>
<service id="adyen_payment.components.basket_service" class="AdyenPayment\Components\BasketService">
<argument type="service" id="events"/>
<argument type="service" id="models"/>
</service>
<service id="adyen_payment.components.configuration" class="AdyenPayment\Components\Configuration">
<argument type="service" id="shopware.plugin.cached_config_reader"/>
<argument type="service" id="dbal_connection"/>
</service>
<service id="adyen_payment.components.order_mail_service" class="AdyenPayment\Components\OrderMailService">
<argument type="service" id="models"/>
<argument type="service" id="adyen_payment.components.basket_service"/>
</service>
<service id="adyen_payment.components.adyen.apifactory" class="AdyenPayment\Components\Adyen\ApiFactory">
<argument type="service" id="models"/>
<argument type="service" id="adyen_payment.components.configuration"/>
<argument type="service" id="adyen_payment.logger"/>
</service>
<service id="adyen_payment.components.adyen.origin_keys_service" class="AdyenPayment\Components\Adyen\OriginKeysService">
<argument type="service" id="adyen_payment.components.adyen.apifactory"/>
<argument type="service" id="models"/>
</service>
<service id="adyen_payment.components.adyen.payment.method"
class="AdyenPayment\Components\Adyen\PaymentMethodService">
<argument type="service" id="adyen_payment.components.adyen.apifactory"/>
<argument type="service" id="adyen_payment.components.configuration"/>
<argument type="service" id="adyen_payment.logger"/>
</service>
<service id="adyen_payment.components.adyen.refund_service"
class="AdyenPayment\Components\Adyen\RefundService">
<argument type="service" id="adyen_payment.components.adyen.apifactory"/>
<argument type="service" id="models"/>
<argument type="service" id="adyen_payment.components.notification_manager"/>
</service>
<service id="adyen_payment.components.fifo_notification_loader"
class="AdyenPayment\Components\FifoNotificationLoader">
<argument type="service" id="adyen_payment.components.notification_manager"/>
</service>
<service id="adyen_payment.components.payment_status_update" class="AdyenPayment\Components\PaymentStatusUpdate">
<argument type="service" id="models"/>
</service>
<service id="adyen_payment.components.payment_method_service" class="AdyenPayment\Components\PaymentMethodService">
<argument type="service" id="models"/>
<argument type="service" id="session"/>
<argument type="service" id="snippets"/>
<argument type="service" id="adyen_payment.components.adyen.payment.method"/>
</service>
<service id="adyen_payment.components.origin_keys_service" class="AdyenPayment\Components\OriginKeysService">
<argument type="service" id="adyen_payment.components.adyen.origin_keys_service"/>
<argument type="service" id="models"/>
<argument type="service" id="shopware.plugin.config_writer"/>
<argument type="service" id="adyen_payment.components.shopware_version_check"/>
</service>
<service id="adyen_payment.components.builder.notification_builder" class="AdyenPayment\Components\Builder\NotificationBuilder">
<argument type="service" id="models"/>
</service>
<!-- Payload -->
<service id="adyen_payment.components.payload.chain" class="AdyenPayment\Components\Payload\Chain"/>
<service id="adyen_payment.components.payload.payment_payload_provider" class="AdyenPayment\Components\Payload\PaymentPayloadProvider"/>
<service id="adyen_payment.components.payload.providers.application_info_provider" class="AdyenPayment\Components\Payload\Providers\ApplicationInfoProvider"/>
<service id="adyen_payment.components.payload.providers.browser_info_provider" class="AdyenPayment\Components\Payload\Providers\BrowserInfoProvider"/>
<service id="adyen_payment.components.payload.providers.lineitems_info_provider" class="AdyenPayment\Components\Payload\Providers\LineItemsInfoProvider"/>
<service id="adyen_payment.components.payload.providers.order_info_provider" class="AdyenPayment\Components\Payload\Providers\OrderInfoProvider"/>
<service id="adyen_payment.components.payload.providers.paymentmethod_provider" class="AdyenPayment\Components\Payload\Providers\PaymentMethodProvider"/>
<service id="adyen_payment.components.payload.providers.shopper_info_provider" class="AdyenPayment\Components\Payload\Providers\ShopperInfoProvider"/>
<!-- Notification Processors -->
<service id="adyen_payment.components.notification_processor.authorisation"
class="AdyenPayment\Components\NotificationProcessor\Authorisation">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.cancellation"
class="AdyenPayment\Components\NotificationProcessor\Cancellation">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.capture"
class="AdyenPayment\Components\NotificationProcessor\Capture">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.capture_failed"
class="AdyenPayment\Components\NotificationProcessor\CaptureFailed">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
</service>
<service id="adyen_payment.components.notification_processor.chargeback"
class="AdyenPayment\Components\NotificationProcessor\Chargeback">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.chargeback_reversed"
class="AdyenPayment\Components\NotificationProcessor\ChargebackReversed">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.offer_closed"
class="AdyenPayment\Components\NotificationProcessor\OfferClosed">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.refund"
class="AdyenPayment\Components\NotificationProcessor\Refund">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.refund_failed"
class="AdyenPayment\Components\NotificationProcessor\RefundFailed">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.notification_processor.refunded_reversed"
class="AdyenPayment\Components\NotificationProcessor\RefundedReversed">
<tag name="adyen.payment.notificationprocessor"/>
<argument type="service" id="adyen_payment.logger.notifications"/>
<argument type="service" id="events"/>
<argument type="service" id="adyen_payment.components.payment_status_update"/>
</service>
<service id="adyen_payment.components.shopware_version_check" class="AdyenPayment\Components\ShopwareVersionCheck">
<argument type="service" id="service_container" />
<argument type="service" id="adyen_payment.logger"/>
</service>
</services>
</container>