fellybikush's picture
Upload 99 files
0dff816 verified
raw
history blame
412 Bytes
<?php
// Application configuration
define('APP_NAME', 'Japanese Motors');
define('APP_VERSION', '1.0.0');
define('UPLOAD_PATH', __DIR__ . '/uploads/claims/');
define('MAX_FILE_SIZE', 5 * 1024 * 1024); // 5MB
define('ALLOWED_FILE_TYPES', ['jpg', 'jpeg', 'png', 'pdf', 'doc', 'docx']);
// Claim configuration
define('MAX_PENDING_CLAIMS', 3);
define('MIN_CLAIM_AMOUNT', 100);
define('MAX_CLAIM_AMOUNT', 100000);
?>