aiskander/calendar-holidays-bundle

Symfony bundle that can be used to manage holidays

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/aiskander/calendar-holidays-bundle

dev-master 2018-08-23 00:19 UTC

This package is auto-updated.

Last update: 2025-09-18 09:11:12 UTC


README

This bundle still under active development and not ready to be used yet.

Installation

Install Using Composer

composer require aiskander/calendar-holidays-bundle

Add Bundle Instance

  • Symfony 2.8 ~ 3.x

In /app/AppKernel.php, add the below line to the bundles array

new \Aiskander\CalendarHolidaysBundle\AiskanderCalendarHolidaysBundle();
  • Symfony 4.x

In /config/bundles.php, add the below line to the bundles array.

\Aiskander\CalendarHolidaysBundle\AiskanderCalendarHolidaysBundle::class => ['all' => true],

Import Bundle Routes

Add the below configuration to your Symfony routing.yaml file

aiskander_calendar_holidays:
    resource: "@AiskanderCalendarHolidaysBundle/Resources/config/routing.yml"