forked from renderse7en/dragon-knight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
33 lines (29 loc) · 955 Bytes
/
config.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
<?php
return [
/**
* ------------------------------------------------------------
* Versioning Config
* - version: the version number you want to use throughout the game
* - build: an optional build name, you can leave it empty
*/
'general' => [
'version' => '1.1.11',
'build' => '',
],
/**
* ------------------------------------------------------------
* Database Config
* - server: the server address that hosts your database (typically localhost)
* - database: the name of the database you're using
* - user: the username for your database connection
* - password: the password for your database connection
* - prefix: an optional prefix for your tables (e.g. dk_users), you can leave it empty
*/
'db' => [
'server' => 'localhost',
'database' => '',
'user' => '',
'password' => '',
'prefix' => ''
],
];