File: /home/xedaptot/be.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.2.0',
// Minimum supported PHP version
'php' => '8.2.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,
// 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_worker' => env('DISTRIBUTED_WORKER', 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),
];