tethys/config/app.php

258 lines
10 KiB
PHP
Raw Normal View History

2015-07-19 06:49:24 +00:00
<?php
return [
2021-02-26 16:02:07 +00:00
/*
2018-08-06 12:30:51 +00:00
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to place the application's name in a notification or
| any other location as required by the application or its packages.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
'workspacePath' => storage_path() . DIRECTORY_SEPARATOR . "workspace",
'name' => env('APP_NAME', 'Tethys'),
2021-02-26 16:02:07 +00:00
/*
2018-08-06 12:30:51 +00:00
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services your application utilizes. Set this in your ".env" file.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
'env' => env('APP_ENV', 'production'),
2021-02-26 16:02:07 +00:00
2018-08-06 12:30:51 +00:00
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
'debug' => env('APP_DEBUG', false),
2018-08-06 12:30:51 +00:00
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
'url' => env('APP_URL', 'http://localhost'),
'alias_url' => env('ALIAS_URL'),
2018-08-06 12:30:51 +00:00
/*
|--------------------------------------------------------------------------
| 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.
|
2021-02-26 16:02:07 +00:00
*/
// https://www.php.net/manual/en/timezones.europe.php
'timezone' => 'Europe/Vienna',
2018-08-06 12:30:51 +00:00
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
2018-08-31 14:47:04 +00:00
'locale' => env('APP_LOCALE', 'en'),
2018-08-06 12:30:51 +00:00
/*
|--------------------------------------------------------------------------
| Application Fallback Locale
|--------------------------------------------------------------------------
|
| The fallback locale determines the locale to use when the current one
| is not available. You may change the value to correspond to any of
| the language folders that are provided through your application.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
2018-08-31 14:47:04 +00:00
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
2018-08-06 12:30:51 +00:00
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| This key is used by the Illuminate encrypter service and should be set
| to a random, 32 character string, otherwise these encrypted strings
| will not be safe. Please do this before deploying an application!
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
'key' => env('APP_KEY', 'SomeRandomString'),
'cipher' => 'AES-256-CBC',
/*
|--------------------------------------------------------------------------
| Logging Configuration
|--------------------------------------------------------------------------
|
| Here you may configure the log settings for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Settings: "single", "daily", "syslog", "errorlog"
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
// 'log' => 'single',
// //debug, info, notice, warning, error, critical, alert, emergency.
// 'log_level' => env('APP_LOG_LEVEL', 'debug'),
2018-08-06 12:30:51 +00:00
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
|
| The service providers listed here will be automatically loaded on the
| request to your application. Feel free to add your own services to
| this array to grant expanded functionality to your applications.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
'providers' => [
/*
* Laravel Framework Service Providers...
*/
2018-08-31 14:47:04 +00:00
Illuminate\Auth\AuthServiceProvider::class,
2018-08-06 12:30:51 +00:00
Illuminate\Broadcasting\BroadcastServiceProvider::class,
'Illuminate\Bus\BusServiceProvider',
'Illuminate\Cache\CacheServiceProvider',
'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider',
//'Illuminate\Routing\ControllerServiceProvider',
'Illuminate\Cookie\CookieServiceProvider',
'Illuminate\Database\DatabaseServiceProvider',
'Illuminate\Encryption\EncryptionServiceProvider',
'Illuminate\Filesystem\FilesystemServiceProvider',
'Illuminate\Foundation\Providers\FoundationServiceProvider',
'Illuminate\Hashing\HashServiceProvider',
'Illuminate\Mail\MailServiceProvider',
Illuminate\Notifications\NotificationServiceProvider::class,
'Illuminate\Pagination\PaginationServiceProvider',
'Illuminate\Pipeline\PipelineServiceProvider',
'Illuminate\Queue\QueueServiceProvider',
'Illuminate\Redis\RedisServiceProvider',
'Illuminate\Auth\Passwords\PasswordResetServiceProvider',
'Illuminate\Session\SessionServiceProvider',
'Illuminate\Translation\TranslationServiceProvider',
'Illuminate\Validation\ValidationServiceProvider',
'Illuminate\View\ViewServiceProvider',
2021-02-26 16:02:07 +00:00
/*
2018-08-31 14:47:04 +00:00
* Package Service Providers...
*/
2018-08-06 12:30:51 +00:00
// 'Illuminate\Html\HtmlServiceProvider',
// 'Collective\Html\HtmlServiceProvider',
2018-08-31 14:47:04 +00:00
Zizaco\Entrust\EntrustServiceProvider::class,
2018-09-06 15:58:54 +00:00
Yajra\DataTables\DataTablesServiceProvider::class,
2018-08-06 12:30:51 +00:00
/*
* Application Service Providers...
*/
2021-02-26 16:02:07 +00:00
App\Providers\AppServiceProvider::class,
2019-02-12 11:21:35 +00:00
App\Providers\AuthServiceProvider::class,
2021-02-26 16:02:07 +00:00
// App\Providers\BroadcastServiceProvider::class,
App\Providers\ConfigServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
// List off others providers...
App\Providers\SolariumServiceProvider::class,
App\Providers\DoiServiceProvider::class,
2018-08-06 12:30:51 +00:00
],
/*
|--------------------------------------------------------------------------
| Class Aliases
|--------------------------------------------------------------------------
|
| This array of class aliases will be registered when this application
| is started. However, feel free to register as many as you wish as
| the aliases are "lazy" loaded so they don't hinder performance.
|
2021-02-26 16:02:07 +00:00
*/
2018-08-06 12:30:51 +00:00
'aliases' => [
2021-02-26 16:02:07 +00:00
'App' => Illuminate\Support\Facades\App::class,
2019-10-21 16:37:08 +00:00
'Arr' => Illuminate\Support\Arr::class,
2021-02-26 16:02:07 +00:00
'Artisan' => Illuminate\Support\Facades\Artisan::class,
2019-10-21 16:37:08 +00:00
'Auth' => Illuminate\Support\Facades\Auth::class,
'Blade' => Illuminate\Support\Facades\Blade::class,
2019-02-12 11:21:35 +00:00
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
2021-02-26 16:02:07 +00:00
'Bus' => 'Illuminate\Support\Facades\Bus',
'Cache' => 'Illuminate\Support\Facades\Cache',
'Config' => 'Illuminate\Support\Facades\Config',
'Cookie' => 'Illuminate\Support\Facades\Cookie',
'Crypt' => 'Illuminate\Support\Facades\Crypt',
'DB' => 'Illuminate\Support\Facades\DB',
'Eloquent' => 'Illuminate\Database\Eloquent\Model',
'Event' => 'Illuminate\Support\Facades\Event',
'File' => 'Illuminate\Support\Facades\File',
2019-02-12 11:21:35 +00:00
'Gate' => Illuminate\Support\Facades\Gate::class,
2021-02-26 16:02:07 +00:00
'Hash' => Illuminate\Support\Facades\Hash::class,
'Input' => Illuminate\Support\Facades\Input::class,
2019-02-12 11:21:35 +00:00
// 'Inspiring' => 'Illuminate\Foundation\Inspiring',
2021-02-26 16:02:07 +00:00
'Lang' => Illuminate\Support\Facades\Lang::class,
'Log' => Illuminate\Support\Facades\Log::class,
2021-02-26 16:02:07 +00:00
'Mail' => 'Illuminate\Support\Facades\Mail',
2019-02-12 11:21:35 +00:00
'Notification' => Illuminate\Support\Facades\Notification::class,
2021-02-26 16:02:07 +00:00
'Password' => 'Illuminate\Support\Facades\Password',
'Queue' => 'Illuminate\Support\Facades\Queue',
'Redirect' => 'Illuminate\Support\Facades\Redirect',
'Redis' => 'Illuminate\Support\Facades\Redis',
'Request' => 'Illuminate\Support\Facades\Request',
'Response' => 'Illuminate\Support\Facades\Response',
'Route' => 'Illuminate\Support\Facades\Route',
'Schema' => 'Illuminate\Support\Facades\Schema',
'Session' => 'Illuminate\Support\Facades\Session',
'Storage' => 'Illuminate\Support\Facades\Storage',
'URL' => 'Illuminate\Support\Facades\URL',
2018-08-06 12:30:51 +00:00
'Validator' => 'Illuminate\Support\Facades\Validator',
2021-02-26 16:02:07 +00:00
'View' => 'Illuminate\Support\Facades\View',
2018-08-06 12:30:51 +00:00
2021-02-26 16:02:07 +00:00
/*
2018-08-31 14:47:04 +00:00
* Third Party Aliases
*/
2018-08-06 12:30:51 +00:00
// 'Form' => 'Illuminate\Html\FormFacade',
// 'HTML' => 'Illuminate\Html\HtmlFacade',
// 'Form' => 'Collective\Html\FormFacade',
// 'Html' => 'Collective\Html\HtmlFacade',
2021-02-26 16:02:07 +00:00
// 'Breadcrumbs' => DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::class,
'Breadcrumbs' => Diglactic\Breadcrumbs\Breadcrumbs::class,
2018-09-06 15:58:54 +00:00
//'Datatables' => Yajra\DataTables\Facades\DataTables::class
2018-08-06 12:30:51 +00:00
],
2015-07-19 06:49:24 +00:00
];