Swap allows you to retrieve currency exchange rates from various services such as Fixer or Yahoo and optionally cache the results.
$ composer require florianv/laravel-swap php-http/message php-http/guzzle6-adapter
Configure the Service Provider and alias:
// /config/app.php
'providers' => [
Swap\Laravel\SwapServiceProvider::class
],
'aliases' => [
'Swap' => Swap\Laravel\Facades\Swap::class
]
Publish the Package configuration
$ php artisan vendor:publish --provider="Swap\Laravel\SwapServiceProvider"
Configure the Service Provider and alias:
// /boostrap/app.php
// Register the facade
$app->withFacades(true, [
Swap\Laravel\Facades\Swap::class => 'Swap'
]);
// Load the configuration
$app->configure('swap');
// Register the service provider
$app->register(Swap\Laravel\SwapServiceProvider::class);
Copy the configuration to /config/swap.php
if you wish to override it.
// Get the latest EUR/USD rate
$rate = Swap::latest('EUR/USD');
// 1.129
$rate->getValue();
// 2016-08-26
$rate->getDate()->format('Y-m-d');
// Get the EUR/USD rate yesterday
$rate = Swap::historical('EUR/USD', Carbon\Carbon::yesterday());
The complete documentation can be found here.
Here is the list of the currently implemented services.
Service | Base Currency | Quote Currency | Historical |
---|---|---|---|
Fixer | * | * | Yes |
European Central Bank | EUR | * | Yes |
* | * | No | |
Open Exchange Rates | USD (free), * (paid) | * | Yes |
Xignite | * | * | Yes |
Yahoo | * | * | No |
WebserviceX | * | * | No |
National Bank of Romania | RON | * | No |
Central Bank of the Republic of Turkey | * | TRY | No |
Central Bank of the Czech Republic | * | CZK | No |
Russian Central Bank | * | RUB | Yes |
currencylayer | USD (free), * (paid) | * | Yes |
The MIT License (MIT). Please see LICENSE for more information.