Files
luos/config/app.php

18 lines
400 B
PHP
Raw Normal View History

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