laravel-yasumi maintained by blood72
Yasumi for Laravel 5
Yasumi is an easy PHP Library for calculating national holidays.
It is the purpose of this package to help Yasumi be optimized for Laravel.
Requirement
- PHP >= 7.1.3
- Laravel 5.4+
Installation
Install using the composer.
composer require blood72/laravel-yasumi
Additional work required below Laravel 5.4 or Auto-Discovery is disabled.
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,
],
Usage
see the document provided by Yasumi.
License
This package is open-sourced software licensed under the MIT license.