-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
116 lines (98 loc) · 3.13 KB
/
config.php
File metadata and controls
116 lines (98 loc) · 3.13 KB
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
<?php
return array(
/*
|--------------------------------------------------------------------------
| Garanti
|--------------------------------------------------------------------------
|
| ...
|
| --
|
*/
'garanti' => array(
'provuser' => 'PROVAUT',
'provpass' => 'PASSWORD1234',
'refunduser' => 'PROVRFN',
'refundpass' => 'PASSWORD1234',
'user' => 'EPOS',
'terminal' => '10101010',
'merchant' => '9876543',
'tdspassword' => '12345678',
'endpoint' => array(
'xml' => 'https://sanalposprov.garanti.com.tr/VPServlet',
'tds' => 'https://sanalposprov.garanti.com.tr/servlet/gt3dengine',
),
'test' => array(
'provuser' => 'PROVAUT',
'provpass' => 'PASSWORD1234',
'refunduser' => 'PROVRFN',
'refundpass' => 'PASSWORD1234',
'user' => 'PROVAUT',
'terminal' => '87654321',
//'terminal' => '30690168',
'merchant' => '7000999',
'tdspassword' => '12345678',
'endpoint' => array(
'xml' => 'https://sanalposprovtest.garanti.com.tr/VPServlet',
'tds' => 'https://sanalposprovtest.garanti.com.tr/servlet/gt3dengine',
),
),
),
/*
|--------------------------------------------------------------------------
| YapıKredi
|--------------------------------------------------------------------------
|
| ...
|
| --
|
*/
'yapikredi' => array(
'tid' => '67676767',
'mid' => '6787678767',
'posnetid' => '99999',
'endpoint' => array(
'xml' => 'https://www.posnet.ykb.com/PosnetWebService/XML',
'tds' => 'https://www.posnet.ykb.com/3DSWebService/YKBPaymentService',
),
'test' => array(
'mid' => '6797752273',
'tid' => '67005689',
'posnetid' => '9685',
'endpoint' => array(
'xml' => 'http://setmpos.ykb.com/PosnetWebService/XML',
'tds' => 'http://setmpos.ykb.com/3DSWebService/YKBPaymentService',
),
),
),
/*
|--------------------------------------------------------------------------
| Akbank
|--------------------------------------------------------------------------
|
| ...
|
| --
|
*/
'akbank' => array(
'merchant' => '101010101',
'username' => 'USERNAME',
'password' => 'PASSWORD1234',
'endpoint' => array(
'xml' => 'https://www.sanalakpos.com/fim/api',
'tds' => 'https://www.sanalakpos.com/fim/est3Dgate',
),
'test' => array(
'merchant' => '100100000',
'username' => 'AKTESTAPI',
'password' => 'AKBANK01',
'endpoint' => array(
'xml' => 'https://entegrasyon.asseco-see.com.tr/fim/api',
'tds' => 'https://entegrasyon.asseco-see.com.tr/fim/est3Dgate',
),
),
),
);