apvalkov / laravel-openexchangerates
Laravel SDK for https://openexchangerates.org api
Installs: 726
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Type:laravel-project
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.5
- illuminate/support: ^8|^9|^10
- myclabs/php-enum: ^1.8
- shureban/laravel-object-mapper: ^1.1
This package is auto-updated.
Last update: 2025-03-10 15:21:52 UTC
README
Installation
Require this package with composer using the following command:
composer require apvalkov/laravel-openexchangerates
Add the following class to the providers
array in config/app.php
:
Apvalkov\LaravelOpenexchangerates\ServiceProvider::class,
You can also publish the config file to change implementations (ie. interface to specific class).
php artisan vendor:publish --provider="Apvalkov\LaravelOpenexchangerates\ServiceProvider"
Set your openexchangerates app id
OPEN_EXCHANGE_RATES_APP_ID=your-app-id-here
How to use
// Latest $rates = (new Openexchangerates())->latest(new LatestRatesRequest()); //Historical $rates = (new Openexchangerates())->historical(new LatestRatesRequest(), Carbon::now());