Skip to content

Instantly share code, notes, and snippets.

@nabeelio
Created January 29, 2018 03:20
Show Gist options
  • Save nabeelio/a93b062121a29647efe43b3508ccffe8 to your computer and use it in GitHub Desktop.
Save nabeelio/a93b062121a29647efe43b3508ccffe8 to your computer and use it in GitHub Desktop.
<?php
/**
* This file overrides any of the config files in the /config directory.
* The root key is the name of the file, and then the structure within.
* The config is merged, so only include what you want to override
*/
return [
# overrides app.php
'app' => [
'name' => 'phpVMS Virtual Airlines',
'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' => 'array',
'prefix' => '',
],
# overrides database.php
'database' => [
'default' => 'sqlite',
'connections' => [
'mysql' => [
'host' => '',
'port' => 3306,
'database' => '',
'username' => '',
'password' => '',
'prefix' => '',
],
],
],
# overrides mail.php
'mail' => [
'driver' => 'smtp',
'host' => '',
'port' => 587,
'from' => [
'name' => '',
'address' => '',
],
'username' => '',
'password' => '',
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment