php client library for currencystack.io – A reliable API for foreign exchange rates and currency conversion.
Installation
composer require currencystack/currencystack-php
usage
Get ip info:
<?php
require_once __DIR__ . '/vendor/autoload.php';
use CurrencyStack\Client;
$CurrencyStackClient = new Client('API Key Here');
try {
var_dump($CurrencyStackClient->CurrencyConvertApi->GetCurrencyConvertion('EUR', ['USD', 'EGP', 'AED']));
} catch (Exception $e) {
echo $e->getMessage();
}
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.