31 lines
935 B
PHP
31 lines
935 B
PHP
<?php
|
|
|
|
use Illuminate\Cache\CacheServiceProvider;
|
|
use Illuminate\Filesystem\FilesystemServiceProvider;
|
|
use Illuminate\View\ViewServiceProvider;
|
|
|
|
return [
|
|
'name' => env('APP_NAME', 'ProcessMaker'),
|
|
'url' => env('APP_URL', 'http://localhost'),
|
|
'env' => env('APP_ENV', 'production'),
|
|
'debug' => env('APP_DEBUG', false),
|
|
'log' => env('APP_LOG', 'single'),
|
|
'log_level' => env('APP_LOG_LEVEL', 'debug'),
|
|
'cache_lifetime' => env('APP_CACHE_LIFETIME', 60),
|
|
'timezone' => 'UTC',
|
|
'providers' => [
|
|
FilesystemServiceProvider::class,
|
|
CacheServiceProvider::class,
|
|
ViewServiceProvider::class,
|
|
Illuminate\Database\DatabaseServiceProvider::class,
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
Illuminate\Queue\QueueServiceProvider::class,
|
|
Illuminate\Translation\TranslationServiceProvider::class,
|
|
|
|
],
|
|
|
|
'aliases' => [
|
|
],
|
|
|
|
];
|