<?php

return [
    'database' => [
        'host' => 'localhost',
        'name' => 'facturx_main',
        'user' => 'facturx_user',
        'password' => 'secure_passwordx',
    ],
    
    'company' => [
        'name' => 'Point8',
        'address' => '8 rue de Grandolle, 17490 Grandolle',
        'phone' => '+33 6 51 35 00 53',
        'email' => 'info@point8.fr',
        'siret' => '12345678901234',
        'tva_number' => 'FR12345678901',
        'rcs' => 'Paris B 123 456 789',
        'capital' => '10000 EUR'
    ],
    
    'facturx' => [
        'profile' => 'minimum',
        'currency' => 'EUR',
        'language' => 'fr',
        'country' => 'FR'
    ],
    
    'security' => [
        'encryption_key' => 'your_32_character_encryptionxxkeyhere',
        'session_timeout' => 3600,
        'max_login_attempts' => 5,
        'lockout_duration' => 900
    ],
    
    'email' => [
        'smtp_host' => '192.168.233.9',
        'smtp_port' => 25,
        'smtp_username' => '',
        'smtp_password' => '',
        'from_email' => 'noreply@point8.fr',
        'from_name' => 'Factur-X System'
    ],
    
    'debug' => false,
    'timezone' => 'Europe/Paris',
    'currency' => 'EUR',
    'locale' => 'fr_FR'
];
