aveiv / open-exchange-rates-api
PHP wrapper for Open Exchange Rates API
Installs: 237 050
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 1
Forks: 7
Open Issues: 2
Requires
- php: ^7.4|^8.0
- ext-curl: *
- ext-json: *
- aveiv/mixed-value: ^0.3
Requires (Dev)
- phpunit/phpunit: ^9.2
- vimeo/psalm: ^3.14
README
Installation
composer require aveiv/open-exchange-rates-api
Usage example
$api = new OpenExchangeRates('YOUR_APP_ID'); // or $client = new OpenExchangeRates('YOUR_APP_ID', new YourHttpClient()); // Getting currencies $api->currencies(); // returns ["USD" => "United States Dollar", ...] $api->currencies([ 'show_alternative' => true, // include alternative currencies 'show_inactive' => true, // include historical/inactive currencies ]); // Getting latest rates $api->latest(); // returns ["USD" => 1.0, ...] $api->latest([ 'base' => 'EUR', // base currency 'symbols' => ['CNY', 'USD'], // limit results to specific currencies 'show_alternative' => true, // include alternative currencies ]); // Getting historical rates $api->historical(new \DateTime('2020-01-01')); // ["USD" => 1.0, ...] $api->historical(new \DateTime('2020-01-01'), [ 'base' => 'EUR', // base currency 'symbols' => ['CNY', 'USD'], // limit results to specific currencies 'show_alternative' => true, // include alternative currencies ]); // Currency conversion $api->convert(99.99, 'USD', 'EUR'); // returns the converted value (from USD to EUR)