read in a local.conf.php in the root for overrides

This commit is contained in:
Nabeel Shahzad
2017-07-05 23:05:17 -05:00
parent 10baaab646
commit e47b4628a0
3 changed files with 23 additions and 5 deletions

View File

@@ -1,11 +1,19 @@
<?php
/**
* DO NOT MODIFY THIS FILE DIRECTLY!
* It will just make upgrading (a little) more difficult
*
* Create a local.conf.php in the root (in the same directory
* as your .env file), and then copy this file into there, and
* make your changes there.
*/
return [
/**
* Pick one of:
* dollar, euro, gbp, yen, jpy, rupee, ruble
*/
'currency' => env('PHPVMS_CURRENCY', 'dollar'),
'currency' => 'dollar',
];