nacoma/fixer-io
最新稳定版本:0.9.1
Composer 安装命令:
composer require nacoma/fixer-io
包简介
A wrapper around the fixer.io currency API
README 文档
README
A wrapper around Fixer.io's currency conversion rates API with minimal dependencies. Upgrading applications is always a hassle. This project aims to help relieve some of that pressure by depending exclusively on PSR interfaces instead of hard dependencies - while maintaining a comfortable API.
An additional goal of this project is to always deliver typed results. There's very little guessing about associative arrays involved when consuming this API.
Supported Endpoints
- Supported Symbols
- Latest Rates
- Historical Rates
- Convert Currency
- Time Series
- Fluctuation
Usage
use Nacoma\Fixer\ExchangeFactory; use Nacoma\Fixer\Http\Client; use Nacoma\Fixer\Http\Middleware\ETagMiddleware; $client = new Client(new Psr18Client(), [ new ETagMiddleware( new SimpleCache(), new Psr17ResponseFactory(), new Psr17StreamFactory(), ) ]); $exchangeFactory = new ExchangeFactory( $client, new Psr17RequestFactory(), new Psr17UriFactory(), 'your-access-key', ); $exchange = $exchangeFactory->create('USD', ['EUR', 'JPY']); // obtaining all rates $result = $exchange->latestRates(); // manual conversion $converted = 50 * $result->rates['EUR']; // API endpoint conversion $converted = $exchange->convert('USD', 'EUR', 50);
The optional Nacoma\Fixer\Http\Client is a thin Psr-18 compatible wrapper around any HTTP client. It enables custom middleware
chaining in order to support caching via the ETag header.
统计信息
- 总下载量: 10.53k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-06-13