-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
31 lines (28 loc) · 1003 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* Money plugin for Craft CMS 3.x
*
* Money plugin to connect users / site to the Money Basic API
*
* @link https://newism.com.au
* @copyright Copyright (c) 2020 Leevi Graham
*/
/**
* Money config.php
*
* This file exists only as a template for the Money settings.
* It does nothing on its own.
*
* Don't edit this file, instead copy it to 'config' as 'money.php'
* and make your changes there to override default settings.
*
* Once copied to 'config', this file will be multi-environment aware as
* well, so you can have different settings groups for each environment, just as
* you do for 'general.php'
*/
return [
# Enter a comma delimited list of alphabetical currency codes. See: https://github.com/moneyphp/money/blob/master/resources/currency.php
'preferredCurrencies' => '',
# Enter a comma delimited list of alphabetical currency codes. See: https://github.com/moneyphp/money/blob/master/resources/currency.php
'excludedCurrencies' => '',
];