Yasumi is an easy PHP Library for calculating national holidays.
It is the purpose of this package to help Yasumi be optimized for Laravel.
- PHP >= 7.1.3
- Laravel 5.4+
Install using the composer.
composer require blood72/laravel-yasumi
add the service provider to the providers
array in config/app.php
.
'providers' => [
// ...
Blood72\Yasumi\YasumiServiceProvider::class,
],
also add this to the aliases
array.
'aliases' => [
// ...
'Yasumi' => \Blood72\Yasumi\YasumiFacade::class,
],
see the document provided by Yasumi.
This package is open-sourced software licensed under the MIT license.