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:
Taylor Dondich
2017-07-27 14:04:51 -07:00
committed by davidcallizaya
parent 5874fce1b5
commit 6458dc64a1
11 changed files with 2786 additions and 494 deletions

18
config/app.php Normal file
View 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' => [
],
];