2017-07-27 14:04:51 -07:00
|
|
|
<?php
|
|
|
|
|
|
2017-08-09 15:48:00 -04:00
|
|
|
use Illuminate\Cache\CacheServiceProvider;
|
|
|
|
|
use Illuminate\Filesystem\FilesystemServiceProvider;
|
|
|
|
|
use Illuminate\View\ViewServiceProvider;
|
|
|
|
|
|
2017-07-27 14:04:51 -07:00
|
|
|
return [
|
|
|
|
|
'name' => env('APP_NAME', 'ProcessMaker'),
|
2017-12-04 13:25:35 +00:00
|
|
|
'url' => env('APP_URL', 'http://localhost'),
|
2017-07-27 14:04:51 -07:00
|
|
|
'env' => env('APP_ENV', 'production'),
|
|
|
|
|
'debug' => env('APP_DEBUG', false),
|
|
|
|
|
'log' => env('APP_LOG', 'single'),
|
|
|
|
|
'log_level' => env('APP_LOG_LEVEL', 'debug'),
|
2017-08-11 16:18:14 -04:00
|
|
|
'cache_lifetime' => env('APP_CACHE_LIFETIME', 60),
|
2019-02-22 13:02:21 -04:00
|
|
|
'timezone' => 'UTC',
|
2017-07-27 14:04:51 -07:00
|
|
|
'providers' => [
|
2017-08-09 15:48:00 -04:00
|
|
|
FilesystemServiceProvider::class,
|
|
|
|
|
CacheServiceProvider::class,
|
|
|
|
|
ViewServiceProvider::class,
|
2018-09-20 10:33:39 -04:00
|
|
|
Illuminate\Database\DatabaseServiceProvider::class,
|
|
|
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
|
|
|
Illuminate\Queue\QueueServiceProvider::class,
|
|
|
|
|
Illuminate\Translation\TranslationServiceProvider::class,
|
2019-04-25 13:47:21 -07:00
|
|
|
Laravel\Tinker\TinkerServiceProvider::class,
|
2017-07-27 14:04:51 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'aliases' => [
|
|
|
|
|
],
|
|
|
|
|
|
2017-08-07 13:02:26 -04:00
|
|
|
];
|