vovke/loan-payments-calculator
Composer 安装命令:
composer require vovke/loan-payments-calculator
包简介
PHP library for payment schedule calculations, using various strategies and configurations.
README 文档
README
LoanPaymentsCalculator is a programmer-oriented library for PHP. It is created to provide Loan Payment Schedules for various inputs and strategies. Mainly developed for the short term loans it can be used for any other loan types as well.
Installation
You may use Composer to download and install LoanPaymentsCalculator as well as its dependencies.
$ composer require vovke/loan-payments-calculator
Standards
All the dates meet ISO 8601 standard, Y-m-d (YYYY-MM-DD)
Components
DateProvider
We use it to provide closest date that suits specific rules, for example, first day of month, not bank holiday and etc.
dateProvider = new DateProvider(DateDetermineStrategy, HolidayProvider, shiftToFuture = true)
dateProvider->calculate( startDate )
HolidayProvider
an Interface for checking if the specific date is a bank holiday. Used for period calculation in Schedule.
Period
Period class is used to provide an object representing a time frame where needed, it contains start and end date for the specific period and the amount of days between those.
We use it as a container to describe the Loan period, where startDate is the day when Loan will potentially get issued, and endDate is the date of the last repayment, we also use period for each of the Loan's payments and in that case endDate is the date of the payment's repayment.
Schedule
Schedule class is used to generate periods for the given loan period, number of payments and payment frequency.
$schedule = new Schedule($startDate, $numberOfPeriods, $dateProvider)
PaymentScheduleCalculator
PaymentScheduleCalculator interface is a contract for implementing different ways of payments calculations.
EqualPrincipalPaymentScheduleCalculator
EqualPrincipalPaymentScheduleCalculator is the simplest implementation of PaymentScheduleCalculator interface, generates payments with equal principal amount.
$startDate = new \DateTime('1984-08-08');
$principalAmount = 500;
$numberOfPeriods = 5;
$dailyInterestRate = 0.000383;
$dateProvider = new DateProvider(new ExactDayOfMonthStrategy(), new WeekendsProvider(), true);
$schedule = new Schedule($startDate, $numberOfPeriods, $dateProvider);
$schedulePeriods = $schedule->generatePeriods();
$paymentSchedule = new EqualPrincipalPaymentScheduleCalculator($schedulePeriods, $principalAmount, $dailyInterestRate);
$payments = $paymentSchedule->calculateSchedule();
AnnuityPaymentScheduleCalculator
AnnuityPaymentScheduleCalculator generates payments with equal payments amount.
...
$paymentSchedule = new AnnuityPaymentScheduleCalculator($schedulePeriods, $principalAmount, $dailyInterestRate);
$payments = $paymentSchedule->calculateSchedule();
License
Released under the terms of the MIT License.
vovke/loan-payments-calculator 适用场景与选型建议
vovke/loan-payments-calculator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6.95k 次下载、GitHub Stars 达 14, 最近一次更新时间为 2017 年 09 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「calculator」 「interest」 「annuity」 「loan」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 vovke/loan-payments-calculator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 vovke/loan-payments-calculator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 vovke/loan-payments-calculator 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A library to calculate effective interest rate. Also know as XIRR or effective APR.
Use this Contao module to highlight the points of interest of your products. Just a click to open a brief description of each point, allowing your user to get a deep and fast understanding of your product features.
A lightweight, simple and easy PHP library for calculating annuities (e.g., mortgages) according to various input data
Calculator for calculating the loan repayment schedule using annuity/differentiated repayment methods. You can specify partial early repayment, as well as take into account one-time/periodic commissions. The package is easily expanded with our own algorithms for calculating the repayment schedule.
Korea Eximbank OpenAPI wrapper
Yii2 extension help to get the result of the calculating from the aggregated delivery services
统计信息
- 总下载量: 6.95k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 15
- 点击次数: 32
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-09-07