-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.example.php
36 lines (27 loc) · 991 Bytes
/
config.example.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
<?php
ini_set('include_path', ini_get('include_path') . ':' . __DIR__ . ':' . __DIR__ . '/app');
const BANK_DB_DSN = 'mysql:host=192.0.2.17;dbname=lunch_bank;charset=utf8';
const BANK_DB_USERNAME = 'lunch_bank';
const BANK_DB_PASSWORD = 'xxxx';
const BANK_BRAND = 'My Bank';
const BANK_LOGO = 'my-logo.png';
const BANK_DOMAIN = 'banking.example.org';
const BANK_MGMT_ACCOUNT = 'net-bank';
const BANK_POPS = [
'net-kasse' => 'NET Kasse (Bargeld)',
'net-kasse-postbank' => 'NET Kasse (Postbank)'
];
const BANK_EXT_ACCOUNT = 'net-kasse-postbank';
const BANK_EXT_OWNER = 'xxxx';
const BANK_EXT_IBAN = 'DExxxx';
const BANK_EXT_ORG = 'Postbank Nürnberg';
const BANK_EXT_MANAGER = '[email protected]';
const BANK_MAIL_FILTERS = [
'*.*@netways.de'
];
const BANK_SMS_HOSTNAME = '192.0.2.5,192.0.2.23';
const BANK_SMS_USERNAME = 'xxxx';
const BANK_SMS_PASSWORD = 'xxxx';
const BANK_MAC_SECRET = 'xxxx';
const BANK_YUBIKEY_CLIENTID = 'xxxx';
const BANK_YUBIKEY_APIKEY = 'xxxx';