mayflower/holiday

This package is abandoned and no longer maintained. No replacement package was suggested.

A library to calculate holidays

0.7.0 2016-05-03 04:33 UTC

This package is not auto-updated.

Last update: 2020-01-24 15:25:32 UTC


README

Build Status

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'))