You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

32 lines
501 B

<?php
use Illuminate\Database\Capsule\Manager as Capsule;
$capsule = new Capsule;
/*
ENVIRONMENT
1 = dev
2 = testing
3 = production
*/
define("ENVIRONMENT", "1");
switch (ENVIRONMENT) {
default:
require 'development.php';
break;
case 2:
require 'testing.php';
break;
case 3:
require 'production.php';
break;
}
$capsule->setAsGlobal();
$capsule->bootEloquent();
// set timezone for timestamps etc
date_default_timezone_set('UTC');