Files
termanager2/config/app.php
Francesco Picone 701f479b7f Primo commit
2026-04-05 19:26:04 +02:00

25 lines
585 B
PHP

<?php
return [
'name' => env('APP_NAME', 'TerManager2'),
'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'http://localhost'),
'timezone' => env('APP_TIMEZONE', 'Europe/Rome'),
'locale' => 'it',
'fallback_locale' => 'en',
'faker_locale' => 'it_IT',
'cipher' => 'AES-256-CBC',
'key' => env('APP_KEY'),
'previous_keys' => [
...array_filter(
explode(',', env('APP_PREVIOUS_KEYS', ''))
),
],
'maintenance' => [
'driver' => 'file',
],
];