-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.php
More file actions
44 lines (38 loc) · 1017 Bytes
/
config.php
File metadata and controls
44 lines (38 loc) · 1017 Bytes
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
<?php
/**
* Basic editable configuration for API engine
*
* @copyright © 2015, Marek Pikuła
*/
namespace {
/** API current version fetched from DB */
General::$settings['Version\API'] = '0.0.2';
}
/**
* Basic database configuration constants
*
* @author Marek Pikuła <marpirk@gmail.com>
*/
namespace Config\DB {
/** Database hostname
* @package Config\DB */
define('Config\DB\host', 'localhost');
/** Database connection port
* @package Config\DB */
define('Config\DB\port', '3306');
/** Database user name
* @package Config\DB */
define('Config\DB\user', 'zso10app');
/** Database password
* @package Config\DB */
define('Config\DB\password', 'fsadpass1029');
/** Main ZSO10 App database name
* @package Config\DB */
define('Config\DB\database', 'zso10app');
/**
* Table name prefix.
* For example: app_lucky
* @package Config\DB
*/
define('Config\DB\table_prefix', 'app_');
}