Files
intaleq_v2/config/app.php
2026-04-22 21:59:56 +03:00

21 lines
540 B
PHP

<?php
return [
'name' => env('APP_NAME', 'IntaleqV2'),
'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'https://api-v2.intaleq.xyz'),
'timezone' => 'UTC',
'locale' => 'ar',
'fallback_locale' => 'en',
'faker_locale' => 'ar_SA',
'cipher' => 'AES-256-CBC',
'key' => env('APP_KEY'),
'previous_keys' => [
...array_filter(explode(',', env('APP_PREVIOUS_KEYS', ''))),
],
'maintenance' => [
'driver' => 'file',
],
];