-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.php
More file actions
39 lines (33 loc) · 1.04 KB
/
config.sample.php
File metadata and controls
39 lines (33 loc) · 1.04 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
<?php
$MASTER_PATH = __DIR__ . DIRECTORY_SEPARATOR . 'vendor/';
$config = [];
$config['APPS_NAME'] = 'KOYABU PHP FRAMEWORK';
$config['HOME_DIR'] = __DIR__ . DIRECTORY_SEPARATOR;
$config['mysql'] = array(
'host' => 'localhost',
'user' => 'root',
'pass' => '',
'data' => 'test'
);
// FCM - Firebase Message
$config['fcm_project_id'] = '';
// Dropbox
$config['dropbox']['app_key'] = '';
$config['dropbox']['app_secret'] = '';
$config['dropbox']['refresh_token'] = '';
$config['dropbox']['access_token'] = '';
$config['dropbox']['home_dir'] = str_replace(" ","_",$config['APPS_NAME']);
// Midtrans
/* MidTrans Config */
$config['midtrans']['production'] = false;
$config['midtrans']['merchantID'] = '';
if ($config['midtrans']['production']) {
$config['midtrans']['url'] = 'https://app.midtrans.com/';
$config['midtrans']['clientKey'] = '';
$config['midtrans']['serverKey'] = '';
} else {
$config['midtrans']['url'] = 'https://app.sandbox.midtrans.com/';
$config['midtrans']['clientKey'] = '';
$config['midtrans']['serverKey'] = '';
}
?>