mayflower / holiday
A library to calculate holidays
Installs: 267 650
Dependents: 3
Suggesters: 0
Security: 0
Stars: 29
Watchers: 50
Forks: 13
pkg:composer/mayflower/holiday
Requires
- php: >= 5.4
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2020-01-24 15:25:32 UTC
README
A library to calculate holidays.
Supported countries and states
- America
- Germany and all constituent states
- Sweden
- Netherlands
Installation
composer require mayflower/holiday
Usage
<?php require_once __DIR__ . '/vendor/autoload.php'; $holidays = new Holiday\Germany(); // Returns array of Holiday objects, if any between the given dates. $holidays->between( new \DateTime('01.01.2018'), new \DateTime('31.12.2018') ); // isHoliday calls ->between with the given date to both parameters. $holidays->isHoliday(new \DateTime('01.05.2018'))