<?php

return [
    'db' => [
        'host' => 'localhost',
        'dbname' => 'your_database_name',
        'user' => 'your_username',
        'password' => 'your_password',
        'charset' => 'utf8mb4'
    ],
    'app' => [
        'name' => 'Kizdar.online',
        'base_url' => 'http://localhost', // Update on deploy
        'debug' => true
    ],
    'upload' => [
        'path' => __DIR__ . '/../public/uploads/',
        'max_size' => 5 * 1024 * 1024, // 5MB
        'allowed_types' => ['image/jpeg', 'image/png', 'image/webp']
    ]
];
