hostnet/bank-holiday-component
最新稳定版本:1.1.3
Composer 安装命令:
composer require hostnet/bank-holiday-component
包简介
Component that provides bank holidays and business day dates
README 文档
README
This component provides bank holidays and business day dates. The component is created to make it easy to calculate holidays in an extendable way.
Currently, this component only contains the Dutch holidays, but pull requests for other (country's) bank holidays are welcome.
Installation
Installation of the bundle can be done via composer and is the recommended way of adding the bundle to your application. To do so, execute the following command to download the latest stable version of this bundle:
composer require hostnet/bank-holiday-component
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
This bundle and the component follow semantic versioning strictly.
Usage
<?php require_once('vendor/autoload.php'); $bank_holiday_resolver = new \Hostnet\Component\BankHoliday\BankHolidayResolver(\Hostnet\Component\BankHoliday\BankHoliday::DUTCH_BANK_HOLIDAY_SET); $business_day_resolver = new \Hostnet\Component\BankHoliday\BusinessDayResolver($bank_holiday_resolver); $business_day_resolver->isBusinessDay(new \DateTime('2017-04-17')); // false foreach ($bank_holiday_resolver->getByDate(new \DateTime('2017-04-17')) as $bank_holiday) { print $bank_holiday . "\n"; // easter_monday }
Requirements
PHP 7.3.x or above.
License
This library is licensed under the MIT License, meaning you can reuse the code within proprietary software provided that all copies of the licensed software include a copy of the MIT License terms and the copyright notice.
For more information, see the LICENSE file.
统计信息
- 总下载量: 53.34k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-06-20