-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
executable file
·101 lines (80 loc) · 2.29 KB
/
settings.php
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
<?php
return [
'enable_faking' => [
"title" => " Enable Faking",
"description" => "Enable Faking i.e. Sandbox.",
"info" => "Set Enable Faking.",
"type" => "switch",
"value" => "1",
],
'sandbox_stk_till_number' => [
"title" => "Sandbox Stk Till Number",
"description" => "Sandbox Stk Till Number.",
"info" => "Set Sandbox Stk Till Number.",
"type" => "text",
"value" => "",
],
'sandbox_till_number' => [
"title" => "Sandbox Till Number",
"description" => "Sandbox Till Number.",
"info" => "Set Sandbox Till Number.",
"type" => "text",
"value" => "",
],
'sandbox_client_id' => [
"title" => "Sandbox Client Id",
"description" => "Sandbox Client Id.",
"info" => "Set Sandbox Client Id.",
"type" => "text",
"value" => "",
],
'sandbox_client_secret' => [
"title" => "Sandbox Sandbox Client Secret",
"description" => "Sandbox Client Secret.",
"info" => "Set Sandbox Client Secret.",
"type" => "text",
"value" => "",
],
'sandbox_api_key' => [
"title" => "Sandbox API Key",
"description" => "Sandbox API Key.",
"info" => "Set Sandbox API Key.",
"type" => "text",
"value" => "",
],
'stk_till_number' => [
"title" => "Stk Till Number",
"description" => "Stk Till Number.",
"info" => "Set Stk Till Number.",
"type" => "text",
"value" => "",
],
'till_number' => [
"title" => "Till Number",
"description" => "Till Number.",
"info" => "Set Till Number.",
"type" => "text",
"value" => "",
],
'client_id' => [
"title" => "Client Id",
"description" => "Client Id.",
"info" => "Set Client Id.",
"type" => "text",
"value" => "",
],
'client_secret' => [
"title" => "Client Secret",
"description" => "Client Secret.",
"info" => "Set Client Secret.",
"type" => "text",
"value" => "",
],
'api_key' => [
"title" => "API Key",
"description" => "API Key.",
"info" => "Set API Key.",
"type" => "text",
"value" => "",
],
];