mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Application Timezone
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify the default timezone for your application, which
|
|
| will be used by the PHP date and date-time functions. We have gone
|
|
| ahead and set this to a sensible default for you out of the box.
|
|
|
|
|
| IMPORTANT: This should always be UTC to ensure consistent date storage.
|
|
| User-specific timezones are handled at the display layer.
|
|
|
|
|
*/
|
|
|
|
'timezone' => env('APP_TIMEZONE', 'UTC'),
|
|
|
|
'aliases' => Facade::defaultAliases()->merge([
|
|
'RedisManager' => Illuminate\Support\Facades\Redis::class,
|
|
'UserVerification' => Jrean\UserVerification\Facades\UserVerification::class,
|
|
'Gravatar' => Creativeorange\Gravatar\Facades\Gravatar::class,
|
|
'Yenc' => App\Facades\Yenc::class,
|
|
])->toArray(),
|
|
|
|
];
|