-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.php
58 lines (45 loc) · 949 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
namespace App;
/**
* Application configuration
*
* PHP version 5.6
*/
class Config
{
// ROOTURL de url van de root map
// Change the ... to your folder name
const URLROOT = '';
/**
* Database host
* @var string
*/
const DB_HOST = 'hfteam6.infhaarlem.nl';
/**
* Database name
* @var string
*/
const DB_NAME = 'hfteam6_DB';
/**
* Database user
* @var string
*/
const DB_USER = 'hfteam6_Group';
/**
* Database password
* @var string
*/
const DB_PASSWORD = 'tv5rMk4gL';
/**
* Show or hide error messages on screen
* @var boolean
*/
const SHOW_ERRORS = true;
/**
* Secret key to be used in hashing
* @var int
*/
const SECRET_KEY = 42;
const CAPTCHA_SECRET = "6LfLu74UAAAAAAYT7Tc92k2BuF-LveRbYu_4T6XV";
const CAPTCHA_SITE_KEY = "6LfLu74UAAAAAJvzZUPM-pMBixajOv_7QuCAGJ-b";
}