Files
luos/config/app.php

25 lines
603 B
PHP
Raw Normal View History

<?php
2017-08-09 15:48:00 -04:00
use Illuminate\Cache\CacheServiceProvider;
use Illuminate\Filesystem\FilesystemServiceProvider;
use Illuminate\View\ViewServiceProvider;
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),
'providers' => [
2017-08-09 15:48:00 -04:00
FilesystemServiceProvider::class,
CacheServiceProvider::class,
ViewServiceProvider::class,
],
'aliases' => [
],
];