[ 'name' => '$SITE_NAME$', 'url' => '$SITE_URL$', # Don't forget to change these when live 'env' => 'dev', 'debug' => true, ], # overrides phpvms.php 'phpvms' => [ 'skin' => 'default', 'vacentral_api_key' => '', ], # overrides cache.php 'cache' => [ 'default' => '$CACHE_DRIVER$', 'prefix' => 'phpvms_', ], # overrides database.php 'database' => [ 'default' => env('DB_CONNECTION', '$DB_CONN$'), 'connections' => [ 'mysql' => [ 'host' => '$DB_HOST$', 'port' => $DB_PORT$, 'database' => '$DB_NAME$', 'username' => '$DB_USER$', 'password' => '$DB_PASS$', 'prefix' => '$DB_PREFIX$', ], ], ], # overrides mail.php 'mail' => [ 'driver' => 'smtp', 'host' => '', 'port' => 587, 'from' => [ 'name' => '', 'address' => '', ], 'username' => '', 'password' => '', ], 'session' => [ 'default' => 'file', 'lifetime' => 60 * 24, # 24 hours ], ];