File: /home/xedaptot/ai.naniguide.com/config/custom.php
<?php
return [
// The standard format for storing date/time string
// Used by Carbon and MySQL
// Important: both `date_format` (for PHP) and `date_format_sql` (for MySQL) must produce the SAME output string
'date_format' => 'Y-m-d', // 2020-12-25
'date_format_sql' => '%Y-%m-%d', // 2020-12-25
// Timeformat for storing
'time_format' => 'H:i',
// Recommended PHP version to upgrade (if PHP version does not satisfy, upgrade is disabled)
'php_recommended' => '8.3.0',
// Minimum supported PHP version
'php' => '8.3.0',
// Branding
'default_logo_light' => env('APP_DEFAULT_LOGO_LIGHT', 'images/logo_light.svg'),
'default_logo_dark' => env('APP_DEFAULT_LOGO_DARK', 'images/logo_dark.svg'),
// Beta features
'woo' => false,
// Ads module — temporarily hidden in UI (menus/nav only, routes & logic stay active)
'ads' => false,
// Special settings
'japan' => env('APP_JAPAN', false),
// If "APP_PROFILE=" (empty), then make it return null too
'app_profile' => env('APP_PROFILE', null) ?: null,
// Dry run mode, do not actually send anything
'dryrun' => env('APP_DRYRUN', false),
// License verification endpoint
'license_verification_endpoint' => env('LICENSE_VALIDATION_ENDPOINT', 'http://verify.acellemail.com'),
// chunk size per import
// Set this value to a too high value will result in MySQL error: "General error: 1390 Prepared statement contains too many placeholders..."
'import_batch_size' => env('IMPORT_BATCH_SIZE', 1000),
// Check if the application is in distributed-worker mode
'distributed_mode' => env('DISTRIBUTED_MODE', false),
// Check if the current instance is a MASTER (file upload, contains webapp) node
'distributed_master' => env('DISTRIBUTED_MASTER', false),
// Log level
'log_level' => env('LOG_LEVEL', 'debug'),
// Use default authentication domain
'sign_with_default_domain' => env('SIGN_WITH_DEFAULT_DOMAIN', false),
// Default queue connection for automation delivery jobs
'automation_queue_connection' => env('AUTOMATION_QUEUE_CONNECTION', null),
'athena_evs_api_endpoint' => env('ATHENA_EVS_API_ENDPOINT', 'http://localhost:9000/api/v1/'),
'athena_evs_ssl_verify' => env('ATHENA_EVS_SSL_VERIFY', true),
'athena_evs_default_plan' => env('ATHENA_EVS_DEFAULT_PLAN', 'FREE_1000'),
'athena_evs_payment_gateway' => env('ATHENA_EVS_PAYMENT_GATEWAY', 'stripe'),
'athena_evs_allowed_return_domains' => array_filter(explode(',', env('ATHENA_EVS_ALLOWED_RETURN_DOMAINS', ''))),
];