Added laravel framework. Bootstrap absolute minimum. Add testing framework that follows Laravel practices. Write simple feature test to test caching.
This commit is contained in:
committed by
davidcallizaya
parent
5874fce1b5
commit
6458dc64a1
18
config/app.php
Normal file
18
config/app.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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' => [
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user