Files
luos/config/app.php
davidcallizaya 21a0b9508e HOR-3626
Moved laravel boot after ProcessMaker loads its evironment constants. (PATH_DATA for shared folder)
2017-08-10 21:35:15 -04:00

20 lines
465 B
PHP

<?php
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'),
'providers' => [
Illuminate\Filesystem\FilesystemServiceProvider::class,
Illuminate\Cache\CacheServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
],
'aliases' => [
],
];