aiskander / calendar-holidays-bundle
Symfony bundle that can be used to manage holidays
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
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: 2024-11-18 07:28:26 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"