| 
<?php
 /**
 * GeoNameSearch - Php Geoname search wrapper, to help reduce too much api call
 * @author      Peter Chigozie(NG) peterujah
 * @copyright   Copyright (c), 2021 Peter(NG) peterujah
 * @license     MIT public license
 */
 
 return array(
 "CD" => array("currency" => "CDF","currency_symbol" => "FC","name" => "CONGO DEMOCRATIC REPUBLIC","short_name" => "CD","code" => "+243"),
 "NG" => array("currency" => "NGN","currency_symbol" => "₦","name" => "NIGERIA","short_name" => "NG","code" => "+234"),
 "GH" => array("currency" => "GHS","currency_symbol" => "¢","name" => "GHANA","short_name" => "GH","code" => "+233"),
 );
 
 |