86 lines
3.2 KiB
PHP
86 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'app' => [
|
|
'base_path' => getenv('FOTOBOX_BASE_PATH') ?: '',
|
|
'locale' => 'de_DE',
|
|
],
|
|
'company' => [
|
|
'name' => 'Fotobox Moments',
|
|
'tagline' => 'Fotobox-Vermietung für Hochzeiten, Geburtstage und Firmenveranstaltungen',
|
|
'email' => 'hallo@fotobox-moments.local',
|
|
'phone' => '+49 170 1234567',
|
|
'website' => 'https://fotobox-moments.local',
|
|
'service_area' => 'Hannover, Region Hannover, Hameln, Braunschweig, Hildesheim und Celle',
|
|
'response_time' => 'Antwort meist innerhalb von 24 Stunden',
|
|
'pickup_window' => 'Abholung ab 17:00 Uhr',
|
|
'return_window' => 'Rückgabe bis 13:00 Uhr',
|
|
'address' => [
|
|
'street' => 'Musterstraße 12',
|
|
'postal_code' => '12345',
|
|
'city' => 'Musterstadt',
|
|
],
|
|
'bank' => [
|
|
'account_holder' => 'Fotobox Moments',
|
|
'iban' => 'DE00 0000 0000 0000 0000 00',
|
|
'bic' => 'DEMOXXX',
|
|
'bank_name' => 'Musterbank',
|
|
],
|
|
'legal' => [
|
|
'owner' => 'Fotobox Moments',
|
|
'representative' => 'Fotobox Moments',
|
|
'vat_id' => '',
|
|
'register_court' => '',
|
|
'register_number' => '',
|
|
'privacy_contact' => 'Datenschutzanfragen bitte an hallo@fotobox-moments.local richten.',
|
|
'dispute_notice' => 'Wir sind nicht bereit und nicht verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.',
|
|
],
|
|
'tax_notice' => 'Gemäß § 19 UStG wird keine Umsatzsteuer berechnet.',
|
|
],
|
|
'pricing' => [
|
|
'default_day_rate_cents' => 9999,
|
|
'currency' => 'EUR',
|
|
'label' => 'Abholung ab 99,99 € pro Miettag',
|
|
'delivery_rates' => [
|
|
'self_pickup' => [
|
|
'label' => 'Selbstabholung',
|
|
'description' => 'Abholung in Hannover',
|
|
'price_cents' => 9999,
|
|
],
|
|
'hannover' => [
|
|
'label' => 'Lieferung nach Hannover',
|
|
'description' => 'Lieferung und Aufbau im Stadtgebiet Hannover',
|
|
'price_cents' => 19999,
|
|
],
|
|
'region_hannover' => [
|
|
'label' => 'Lieferung in die Region Hannover',
|
|
'description' => 'Lieferung und Aufbau in die Region Hannover',
|
|
'price_cents' => 24999,
|
|
],
|
|
'extended_region' => [
|
|
'label' => 'Lieferung nach Hameln, Braunschweig, Hildesheim oder Celle',
|
|
'description' => 'Lieferung und Aufbau in Hameln, Braunschweig, Hildesheim oder Celle',
|
|
'price_cents' => 29999,
|
|
],
|
|
],
|
|
],
|
|
'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',
|
|
],
|
|
];
|