Skip to content

Commit d53f961

Browse files
Updated gateways config
1 parent 0fb7e3d commit d53f961

File tree

1 file changed

+72
-2
lines changed

1 file changed

+72
-2
lines changed

config/laravel-omnipay.php

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,81 @@
11
<?php
22

33
return [
4-
// Add in each gateway here
4+
5+
// Cấu hình cho các cổng thanh toán tại hệ thống của bạn, các cổng không xài có thể xóa cho gọn hoặc không điền.
6+
57
'gateways' => [
6-
'momo_aio' => [
8+
'MoMoAIO' => [
79
'driver' => 'MoMo_AllInOne',
810
'options' => [
11+
'accessKey' => '',
12+
'secretKey' => '',
13+
'partnerCode' => '',
14+
],
15+
],
16+
'MoMoQRCode' => [
17+
'driver' => 'MoMo_QRCode',
18+
'options' => [
19+
'accessKey' => '',
20+
'secretKey' => '',
21+
'partnerCode' => '',
22+
],
23+
],
24+
'MoMoAIA' => [
25+
'driver' => 'MoMo_AppInApp',
26+
'options' => [
27+
'accessKey' => '',
28+
'secretKey' => '',
29+
'partnerCode' => '',
30+
'publicKey' => '',
31+
],
32+
],
33+
'MoMoPOS' => [
34+
'driver' => 'MoMo_POS',
35+
'options' => [
36+
'accessKey' => '',
37+
'secretKey' => '',
38+
'partnerCode' => '',
39+
'publicKey' => '',
40+
],
41+
],
42+
'OnePayDomestic' => [
43+
'driver' => 'OnePay_Domestic',
44+
'options' => [
45+
'merchant' => '',
46+
'accessCode' => '',
47+
'hashCode' => '',
48+
'user' => '',
49+
'password' => '',
50+
'testMode' => false,
51+
],
52+
],
53+
'OnePayInternational' => [
54+
'driver' => 'OnePay_International',
55+
'options' => [
56+
'merchant' => '',
57+
'accessCode' => '',
58+
'hashCode' => '',
59+
'user' => '',
60+
'password' => '',
61+
'testMode' => false,
62+
],
63+
],
64+
'VTCPay' => [
65+
'driver' => 'VtcPay',
66+
'options' => [
67+
'receiverAccount' => '',
68+
'websiteId' => '',
69+
'securityCode' => '',
70+
'testMode' => false,
71+
],
72+
],
73+
'VNPay' => [
74+
'driver' => 'VnPay',
75+
'options' => [
76+
'tmnCode' => '',
77+
'hashSecret' => '',
78+
'testMode' => false,
979
],
1080
],
1181
],

0 commit comments

Comments
 (0)