-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php.dist
48 lines (46 loc) · 1.12 KB
/
config.php.dist
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
<?php
/**
* Created by PhpStorm.
* User: Stefano "Yoghi" Tamagnini
* Date: 21/09/15 - 21:41
*
*/
return [
'enviroment' => 'development',
'maintenance' => false,
'uploads_dir' => __DIR__ . '/uploads',
'telegram_token' => '',
'twitter_consumer_key ' => '',
'twitter_consumer_secret ' => '',
'twitter_access_token ' => '',
'twitter_access_secret ' => '',
'twitter_hashtag_search' => '',
'imap_server ' => '',
'imap_port ' => '',
'imap_protocol ' => '',
'imap_mail ' => '',
'imap_password ' => '',
'databases' => [
'default' => [
'driver' => '',
'host' => '',
'database' => '',
'username' => '',
'password' => '',
'charset' => '',
'collation' => '',
'prefix' => ''
],
'testing' => [
'driver' => '',
'host' => '',
'database' => '',
'username' => '',
'password' => '',
'charset' => '',
'collation' => '',
'prefix' => ''
]
]
];
?>