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'),
|
2017-12-04 13:25:35 +00:00
|
|
|
'url' => env('APP_URL', 'http://localhost'),
|
2017-07-27 14:04:51 -07:00
|
|
|
'env' => env('APP_ENV', 'production'),
|
|
|
|
|
'debug' => env('APP_DEBUG', false),
|
2022-11-10 12:47:28 -04:00
|
|
|
'cache_lifetime' => env('APP_CACHE_LIFETIME', 3600), //laravel 8.x the time parameter is in seconds.
|
2025-09-23 19:52:18 +00:00
|
|
|
'key' => env('APP_KEY', 'THVyYW5AU29mdF9PcHRpbXVzUHJpbWU='),
|
2019-07-22 11:24:00 -04:00
|
|
|
'cipher' => 'AES-256-CBC',
|
2019-02-22 13:02:21 -04:00
|
|
|
'timezone' => 'UTC',
|
2017-07-27 14:04:51 -07:00
|
|
|
'providers' => [
|
2017-08-09 15:48:00 -04:00
|
|
|
FilesystemServiceProvider::class,
|
|
|
|
|
CacheServiceProvider::class,
|
|
|
|
|
ViewServiceProvider::class,
|
2018-09-20 10:33:39 -04:00
|
|
|
Illuminate\Database\DatabaseServiceProvider::class,
|
|
|
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
|
|
|
Illuminate\Queue\QueueServiceProvider::class,
|
|
|
|
|
Illuminate\Translation\TranslationServiceProvider::class,
|
2019-07-22 11:24:00 -04:00
|
|
|
Illuminate\Encryption\EncryptionServiceProvider::class,
|
2019-04-25 13:47:21 -07:00
|
|
|
Laravel\Tinker\TinkerServiceProvider::class,
|
2019-06-26 13:56:49 -04:00
|
|
|
Illuminate\Notifications\NotificationServiceProvider::class,
|
2019-07-05 12:06:31 -04:00
|
|
|
Illuminate\Bus\BusServiceProvider::class,
|
2020-06-19 18:40:56 +00:00
|
|
|
Illuminate\Redis\RedisServiceProvider::class,
|
2020-07-07 21:28:18 -04:00
|
|
|
App\Providers\AppServiceProvider::class,
|
2022-05-13 17:09:51 -04:00
|
|
|
App\Providers\ViewServiceProvider::class
|
2017-07-27 14:04:51 -07:00
|
|
|
],
|
|
|
|
|
'aliases' => [
|
2020-12-02 19:46:17 +00:00
|
|
|
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
|
|
|
|
'View' => Illuminate\Support\Facades\View::class
|
2017-07-27 14:04:51 -07:00
|
|
|
],
|
2017-08-07 13:02:26 -04:00
|
|
|
];
|