redcode/currency-rate
最新稳定版本:0.2.4
Composer 安装命令:
composer require redcode/currency-rate
包简介
Useful library for fetching currency rates from cbr and ecb providers
README 文档
README
This library shows an efficient way to work with currencies and currency rates form Central Bank of Russia, European Central Bank, and Yahoo Finance. It contains base classes and interfaces which hide logic about loading currency rates, one of the most useful implementation is Symfony2 bundle.
Installing
Composer
You can easily install it with composer by command:
composer require redcode/currency-rate
Documentation
First of all you need to implement services ICurrencyRateManager, ICurrencyManager. Then DTO or Entity objects Currency and CurrencyRate.
After that create and configure currencyConverter:
use RedCode\Currency\Rate; // we have initialized $currencyRateManager and $currencyManager $providerFactory = new Provider\ProviderFactory(); $providerFactory->addProvider( new Provider\EcbCurrencyRateProvider`( $currencyRateManager, $currencyManager ) ); $converter = new CurrencyConverter( $providerFactory, $currencyRateManager, $currencyManager ); $convertedValue = $converter->convert('USD', 'GBP', 100);
Tests
To run tests use command below:
./tests/runTests.sh
Contribute
Pull requests are welcome. Please see our CONTRIBUTING guide.
统计信息
- 总下载量: 463.8k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-04-30