28 lines
779 B
Plaintext
28 lines
779 B
Plaintext
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Local configuration.
|
||
|
|
*
|
||
|
|
* Copy this file to `local.php` and change its settings as required.
|
||
|
|
* `local.php` is ignored by git and safe to use for local and sensitive data like usernames and passwords.
|
||
|
|
*/
|
||
|
|
|
||
|
|
return [
|
||
|
|
'self' => [
|
||
|
|
'name' => 'Laterex Üzemeltető Kft.',
|
||
|
|
'address' => '1095 Budapest, Hídépítő utca 1-12.',
|
||
|
|
'tax_number' => '25398791-2-43',
|
||
|
|
'sender' => 'nobody@localhost',
|
||
|
|
'site-uri' => 'localhost',
|
||
|
|
],
|
||
|
|
'client' => [
|
||
|
|
'short' => 'XXII. kerület',
|
||
|
|
'name' => 'Budafok-Tétény, Budapest, XXII. kerületi Önkormányzat',
|
||
|
|
'address' => '1221 Budapest, Városház tér 11.',
|
||
|
|
'tax_number' => '15735856-2-43',
|
||
|
|
],
|
||
|
|
'acl_config' => [
|
||
|
|
'hmac_key' => '',
|
||
|
|
],
|
||
|
|
];
|