46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'company' => [
|
|
'name' => 'Fotobox Moments',
|
|
'tagline' => 'Fotobox-Vermietung fuer Hochzeiten, Geburtstage und Firmenevents',
|
|
'email' => 'hallo@fotobox-moments.local',
|
|
'phone' => '+49 170 1234567',
|
|
'website' => 'https://fotobox-moments.local',
|
|
'address' => [
|
|
'street' => 'Musterstrasse 12',
|
|
'postal_code' => '12345',
|
|
'city' => 'Musterstadt',
|
|
],
|
|
'bank' => [
|
|
'account_holder' => 'Fotobox Moments',
|
|
'iban' => 'DE00 0000 0000 0000 0000 00',
|
|
'bic' => 'DEMOXXX',
|
|
'bank_name' => 'Musterbank',
|
|
],
|
|
'tax_notice' => 'Gemaess Paragraph 19 UStG wird keine Umsatzsteuer berechnet.',
|
|
],
|
|
'pricing' => [
|
|
'default_day_rate_cents' => 9999,
|
|
'currency' => 'EUR',
|
|
],
|
|
'admin' => [
|
|
'username' => 'admin',
|
|
'password' => getenv('FOTOBOX_ADMIN_PASSWORD') ?: 'fotobox-admin',
|
|
],
|
|
'database' => [
|
|
'credentials_file' => __DIR__ . '/mysql.local.php',
|
|
'table_prefix' => 'fb_',
|
|
'tables' => [
|
|
'bookings' => 'bookings',
|
|
'invoices' => 'invoices',
|
|
],
|
|
],
|
|
'storage' => [
|
|
'bookings' => __DIR__ . '/storage/bookings.json',
|
|
'invoices' => __DIR__ . '/storage/invoices.json',
|
|
],
|
|
];
|