aiskander / calendar-holidays-bundle
Symfony bundle that can be used to manage holidays
Package info
github.com/amiriskander/calendar-holidays-bundle
Type:symfony-bundle
pkg:composer/aiskander/calendar-holidays-bundle
dev-master
2018-08-23 00:19 UTC
Requires
- php: ^7.0
- doctrine/doctrine-bundle: ^1.8
- doctrine/orm: ^2.3
- symfony/config: ^3.4|^4.0
- symfony/console: ^3.4|^4.0
- symfony/dependency-injection: ^3.4|^4.0
- symfony/framework-bundle: ^3.4|^4.0
- symfony/yaml: ^3.4
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.8
- symfony/phpunit-bridge: ^3.4|^4.0
This package is auto-updated.
Last update: 2026-03-18 10:13:35 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"