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'),
|
|
|
|
|
'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),
|
2017-07-27 14:04:51 -07:00
|
|
|
|
|
|
|
|
'providers' => [
|
2017-08-09 15:48:00 -04:00
|
|
|
FilesystemServiceProvider::class,
|
|
|
|
|
CacheServiceProvider::class,
|
|
|
|
|
ViewServiceProvider::class,
|
2017-07-27 14:04:51 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'aliases' => [
|
|
|
|
|
],
|
|
|
|
|
|
2017-08-07 13:02:26 -04:00
|
|
|
];
|