-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
32 lines (23 loc) · 1.22 KB
/
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
<?php
#-------------------------------------------------------------------------------
# ERROR REPORTING
#-------------------------------------------------------------------------------
ini_set ('error_reporting', E_ALL);
ini_set ('display_errors', 'On');
ini_set ('log_errors', 'On');
ini_set ('error_log', 'php-errors.log');
#-------------------------------------------------------------------------------
# ENVIRONMENT
#-------------------------------------------------------------------------------
date_default_timezone_set('Europe/Amsterdam');
#-------------------------------------------------------------------------------
# AUTOLOADING
#-------------------------------------------------------------------------------
require realpath(dirname(__DIR__)) . '/vendor/autoload.php';
#-------------------------------------------------------------------------------
# SETUP VLEKS.COM API PARAMETERS
#-------------------------------------------------------------------------------
define('VLEKS_MERCHANT_ID', '-- YOUR MERCHANT ID --');
define('VLEKS_API_CLUSTER', '-- YOUR CLUSTER URL --');
define('VLEKS_API_PUBLIC_KEY', '-- YOUR PUBLIC KEY --');
define('VLEKS_API_PRIVATE_KEY', '-- YOUR PRIVATE KEY --');