-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppConfig.php
37 lines (29 loc) · 949 Bytes
/
AppConfig.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
<?php
class AppConfig{
//slim config
public static $templatePath = '../app/templates';
public static $displayErrorDetails = true;
public static $basePath = '/public/';
//Database config
public static $dbhost = 'localhost';
public static $dbname = 'pms';
public static $port = '3306';
public static $dbuser = 'pms';
public static $dbpass = 'pms';
public static $passwordResetConfig = array(
'resetLink' => 'http://dreamlogic.in/demo/pms/public/index.php/authenticate/passwordReset?code=',
'fromEmail' => '[email protected]',
'sendAs' => 'Admin'
);
public static $accountSettings = array(
'loginLink' => 'http://dreamlogic.in/demo/pms/public/index.php',
'fromEmail' => '[email protected]',
'sendAs' => 'Admin',
'adminMail' => '[email protected]'
);
public static $passwordHashSettings = array(
'algorithm' => PASSWORD_DEFAULT,
'settings' => array('cost' => 12)
);
}
?>