-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.php
32 lines (24 loc) · 1.32 KB
/
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
<?php declare(strict_types=1);
return [
'here-we-donate.com' => [
'logLevel' => 'INFO',
'webhookSecret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // random string 32 chars
'adminEmail' => 'admin@mail.com',
'accountantEmail' => 'accountant@mail.com',
'periodGroupId' => 1000, // Mandator /periodgroup/1000
'donationAccountTemplateId' => 2010, // Donations /accounttemplate/2010
'debtorAccountTemplateId' => 2020, // Debtors /accounttemplate/2020
'bankAccountTemplateId' => 2030, // Bank /accounttemplate/2030
'debtorCategoryId' => 3000, // Inbox RaiseNow /debitorcategory/3000
'groupIdForNewMembers' => 101,
'weblingApiUrl' => 'https://gruenesandbox.webling.ch',
'weblingApiKey' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'weblingServiceApiUrl' => 'https://weblingservice.gruene.ch',
'weblingServiceClientId' => '1',
'weblingServiceClientSecret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'tokenEncryptionKey' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // random string 32 chars
'donorField' => 'donorCountry',
'newsletterFieldD' => 'newsletterCountryD',
'newsletterFieldF' => 'newsletterCountryF',
],
];