Skip to content

Commit

Permalink
Update currency table, Add missing names
Browse files Browse the repository at this point in the history
  • Loading branch information
Richardds committed Jan 18, 2023
1 parent cc39a61 commit 4593826
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions src/Currency.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,38 +12,38 @@ class Currency
* Available ECB currencies
*/
public const CURRENCY_NAME_TABLE = [
'EUR' => '',
'USD' => '',
'JPY' => '',
'BGN' => '',
'CZK' => '',
'DKK' => '',
'GBP' => '',
'HUF' => '',
'PLN' => '',
'RON' => '',
'SEK' => '',
'CHF' => '',
'NOK' => '',
'HRK' => '',
'RUB' => '',
'TRY' => '',
'AUD' => '',
'BRL' => '',
'CAD' => '',
'CNY' => '',
'HKD' => '',
'IDR' => '',
'ILS' => '',
'INR' => '',
'KRW' => '',
'MXN' => '',
'MYR' => '',
'NZD' => '',
'PHP' => '',
'SGD' => '',
'THB' => '',
'ZAR' => ''
'EUR' => 'Euro',
'USD' => 'United States dollar',
'JPY' => 'Japanese yen',
'BGN' => 'Bulgarian lev',
'CZK' => 'Czech koruna',
'DKK' => 'Danish krone',
'GBP' => 'Pound sterling',
'HUF' => 'Hungarian forint',
'PLN' => 'Polish złoty',
'RON' => 'Romanian leu',
'SEK' => 'Swedish krona',
'CHF' => 'Swiss franc',
'ISK' => 'Icelandic króna',
'NOK' => 'Norwegian krone',
'HRK' => 'Croatian kuna',
'TRY' => 'Turkish lira',
'AUD' => 'Australian dollar',
'BRL' => 'Brazilian real',
'CAD' => 'Canadian dollar',
'CNY' => 'Renminbi',
'HKD' => 'Hong Kong dollar',
'IDR' => 'Indonesian rupiah',
'ILS' => 'Israeli new shekel',
'INR' => 'Indian rupee',
'KRW' => 'South Korean won',
'MXN' => 'Mexican peso',
'MYR' => 'Malaysian ringgit',
'NZD' => 'New Zealand dollar',
'PHP' => 'Philippine peso',
'SGD' => 'Singapore dollar',
'THB' => 'Thai baht',
'ZAR' => 'South African rand'
];

/**
Expand Down

0 comments on commit 4593826

Please sign in to comment.