2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
2017-12-20 05:19:06 +08:00
|
|
|
'name' => env('PHPVMS_VA_NAME', 'phpvms'),
|
2017-06-09 03:16:50 +08:00
|
|
|
'env' => env('APP_ENV', 'dev'),
|
2017-06-09 02:54:12 +08:00
|
|
|
'debug' => env('APP_DEBUG', true),
|
2017-06-09 02:28:26 +08:00
|
|
|
'url' => env('APP_URL', 'http://localhost'),
|
2017-12-15 07:12:42 +08:00
|
|
|
'version' => '7.0',
|
2017-06-09 02:28:26 +08:00
|
|
|
|
2017-12-24 01:58:17 +08:00
|
|
|
# DON'T CHANGE THIS OR ELSE YOUR TIMES WILL BE MESSED UP!
|
2017-12-10 22:47:03 +08:00
|
|
|
'timezone' => 'UTC',
|
2017-12-24 01:58:17 +08:00
|
|
|
|
2017-06-21 11:48:16 +08:00
|
|
|
'locale' => env('APP_LOCALE', 'en'),
|
2017-06-09 02:28:26 +08:00
|
|
|
'fallback_locale' => 'en',
|
|
|
|
|
2017-12-18 06:58:53 +08:00
|
|
|
# Is the default key cipher. Needs to be changed, otherwise phpVMS will think
|
|
|
|
# that it isn't installed. Doubles as a security feature, so keys are scrambled
|
|
|
|
'key' => env('APP_KEY', 'base64:zdgcDqu9PM8uGWCtMxd74ZqdGJIrnw812oRMmwDF6KY='),
|
2017-06-09 02:28:26 +08:00
|
|
|
'cipher' => 'AES-256-CBC',
|
|
|
|
|
2017-12-02 23:19:58 +08:00
|
|
|
'log' => env('APP_LOG', 'daily'),
|
2017-06-09 02:28:26 +08:00
|
|
|
'log_level' => env('APP_LOG_LEVEL', 'debug'),
|
2017-12-02 23:19:58 +08:00
|
|
|
'log_max_files' => env('APP_LOG_MAX_FILES', 7),
|
2017-06-09 02:28:26 +08:00
|
|
|
|
|
|
|
'providers' => [
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Laravel Framework Service Providers...
|
|
|
|
*/
|
|
|
|
Illuminate\Auth\AuthServiceProvider::class,
|
|
|
|
Illuminate\Broadcasting\BroadcastServiceProvider::class,
|
|
|
|
Illuminate\Bus\BusServiceProvider::class,
|
|
|
|
Illuminate\Cache\CacheServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
|
|
Illuminate\Cookie\CookieServiceProvider::class,
|
|
|
|
Illuminate\Database\DatabaseServiceProvider::class,
|
|
|
|
Illuminate\Encryption\EncryptionServiceProvider::class,
|
|
|
|
Illuminate\Filesystem\FilesystemServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
|
|
|
|
Illuminate\Hashing\HashServiceProvider::class,
|
|
|
|
Illuminate\Mail\MailServiceProvider::class,
|
|
|
|
Illuminate\Notifications\NotificationServiceProvider::class,
|
|
|
|
Illuminate\Pagination\PaginationServiceProvider::class,
|
|
|
|
Illuminate\Pipeline\PipelineServiceProvider::class,
|
|
|
|
Illuminate\Queue\QueueServiceProvider::class,
|
|
|
|
Illuminate\Redis\RedisServiceProvider::class,
|
|
|
|
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
|
|
|
|
Illuminate\Session\SessionServiceProvider::class,
|
|
|
|
Illuminate\Translation\TranslationServiceProvider::class,
|
|
|
|
Illuminate\Validation\ValidationServiceProvider::class,
|
|
|
|
Illuminate\View\ViewServiceProvider::class,
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Package Service Providers...
|
|
|
|
*/
|
|
|
|
Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
|
|
|
|
Collective\Html\HtmlServiceProvider::class,
|
|
|
|
Laracasts\Flash\FlashServiceProvider::class,
|
|
|
|
Prettus\Repository\Providers\RepositoryServiceProvider::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
Spatie\Fractal\FractalServiceProvider::class,
|
2017-12-02 11:05:59 +08:00
|
|
|
SebastiaanLuca\Helpers\Methods\GlobalHelpersServiceProvider::class,
|
|
|
|
SebastiaanLuca\Helpers\Collections\CollectionMacrosServiceProvider::class,
|
2017-12-05 05:35:39 +08:00
|
|
|
Toin0u\Geotools\GeotoolsServiceProvider::class,
|
2017-12-08 07:22:15 +08:00
|
|
|
Jackiedo\Timezonelist\TimezonelistServiceProvider::class,
|
2018-01-19 09:24:06 +08:00
|
|
|
Irazasyed\LaravelGAMP\LaravelGAMPServiceProvider::class,
|
2017-06-11 09:10:31 +08:00
|
|
|
|
2017-06-09 02:28:26 +08:00
|
|
|
/*
|
|
|
|
* Application Service Providers...
|
|
|
|
*/
|
|
|
|
App\Providers\AppServiceProvider::class,
|
2017-06-16 11:45:25 +08:00
|
|
|
App\Providers\BroadcastServiceProvider::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
App\Providers\AuthServiceProvider::class,
|
|
|
|
App\Providers\EventServiceProvider::class,
|
|
|
|
App\Providers\RouteServiceProvider::class,
|
2017-12-18 06:58:53 +08:00
|
|
|
Nwidart\Modules\LaravelModulesServiceProvider::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
],
|
|
|
|
|
|
|
|
'aliases' => [
|
|
|
|
'App' => Illuminate\Support\Facades\App::class,
|
|
|
|
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
|
|
|
'Auth' => Illuminate\Support\Facades\Auth::class,
|
|
|
|
'Blade' => Illuminate\Support\Facades\Blade::class,
|
|
|
|
'Cache' => Illuminate\Support\Facades\Cache::class,
|
2017-07-23 10:31:26 +08:00
|
|
|
'Carbon' => \Carbon\Carbon::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Config' => Illuminate\Support\Facades\Config::class,
|
|
|
|
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
|
|
|
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
|
|
|
'DB' => Illuminate\Support\Facades\DB::class,
|
|
|
|
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
|
|
|
|
'Event' => Illuminate\Support\Facades\Event::class,
|
|
|
|
'File' => Illuminate\Support\Facades\File::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Flash' => Laracasts\Flash\Flash::class,
|
|
|
|
'Form' => Collective\Html\FormFacade::class,
|
|
|
|
'Fractal' => Spatie\Fractal\FractalFacade::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Gate' => Illuminate\Support\Facades\Gate::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Geotools' => Toin0u\Geotools\Facade\Geotools::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Hash' => Illuminate\Support\Facades\Hash::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Html' => Collective\Html\HtmlFacade::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Lang' => Illuminate\Support\Facades\Lang::class,
|
|
|
|
'Log' => Illuminate\Support\Facades\Log::class,
|
|
|
|
'Mail' => Illuminate\Support\Facades\Mail::class,
|
|
|
|
'Notification' => Illuminate\Support\Facades\Notification::class,
|
|
|
|
'Password' => Illuminate\Support\Facades\Password::class,
|
|
|
|
'Queue' => Illuminate\Support\Facades\Queue::class,
|
|
|
|
'Redirect' => Illuminate\Support\Facades\Redirect::class,
|
|
|
|
'Redis' => Illuminate\Support\Facades\Redis::class,
|
|
|
|
'Request' => Illuminate\Support\Facades\Request::class,
|
|
|
|
'Response' => Illuminate\Support\Facades\Response::class,
|
|
|
|
'Route' => Illuminate\Support\Facades\Route::class,
|
|
|
|
'Schema' => Illuminate\Support\Facades\Schema::class,
|
|
|
|
'Session' => Illuminate\Support\Facades\Session::class,
|
|
|
|
'Storage' => Illuminate\Support\Facades\Storage::class,
|
|
|
|
'URL' => Illuminate\Support\Facades\URL::class,
|
2017-08-15 07:26:20 +08:00
|
|
|
'Utils' => App\Facades\Utils::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'Validator' => Illuminate\Support\Facades\Validator::class,
|
2017-12-29 08:00:35 +08:00
|
|
|
'Version' => PragmaRX\Version\Package\Facade::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
'View' => Illuminate\Support\Facades\View::class,
|
2017-06-13 11:48:32 +08:00
|
|
|
'Yaml' => Symfony\Component\Yaml\Yaml::class,
|
2017-12-20 10:19:36 +08:00
|
|
|
|
|
|
|
# ENUMS
|
2018-01-10 03:34:19 +08:00
|
|
|
'GenericState' => App\Models\Enums\GenericState::class,
|
2017-12-31 10:40:32 +08:00
|
|
|
'UserState' => App\Models\Enums\UserState::class,
|
2017-12-21 03:27:57 +08:00
|
|
|
'PirepSource' => App\Models\Enums\PirepSource::class,
|
2017-12-20 10:19:36 +08:00
|
|
|
'PirepState' => App\Models\Enums\PirepState::class,
|
|
|
|
'PirepStatus' => App\Models\Enums\PirepStatus::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
],
|
|
|
|
];
|