investbrainapp/frankfurter-client
Composer 安装命令:
composer require investbrainapp/frankfurter-client
包简介
Laravel SDK for interacting with the Frankfurter currency exchange API
README 文档
README
This is a simple wrapper for the fantastic Frankfurter API.
Installation
Use composer to install:
composer require investbrainapp/frankfurter-client
Usage
This package provides a simple Laravel facade that exposes all functionality provided by the Frankfurter API.
Latest
To get the latest exchange rate use the latest method:
return Frankfurter::latest();
Historical
To get a historic exchange rate, pass a well formated date string or a DateTime object to the historical method:
return Frankfurter::historical('2025-01-01');
Time series
To get time series data for a range of dates, pass well formated date strings or DateTime objects to the timeSeries method:
return Frankfurter::timeSeries('2023-01-01', '2024-12-31');
If you want all rates between a date in the past and today's date, you can omit the second argument to the timeSeries method:
return Frankfurter::timeSeries('2023-01-01');
Supported currencies
You can call the currencies method to get a list of all supported currencies:
return Frankfurter::currencies();
Other methods
You can pass an array to the setSymbols method to limit the query to only specified symbols:
Frankfurter::setSymbols(['INR','JPY','GBP'])->latest();
You can also set the base currency using the setBaseCurrency method:
Frankfurter::setBaseCurrency(['GBP'])->latest();
Configuration
You can publish the frankfurter.php config file by running:
php artisan vendor:publish --provider="Investbrain\Frankfurter\FrankfurterServiceProvider" --tag=config
In the config file, you can adjust your base currency and the base url (if you're self hosting Frankfurter).
investbrainapp/frankfurter-client 适用场景与选型建议
investbrainapp/frankfurter-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2 次下载、GitHub Stars 达 2, 最近一次更新时间为 2025 年 02 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 investbrainapp/frankfurter-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 investbrainapp/frankfurter-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2025-02-08