diego-brocanelli / calculate-working-days
Responsible for calculating working days between a date range
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 0
Forks: 2
Open Issues: 0
Type:component
Requires
- php: >=7.2
Requires (Dev)
- phpunit/phpunit: ^8.3@dev
- symfony/var-dumper: ^5.0@dev
README
Calculate number of working days in a date range
Requirements
- PHP >= 7.4
- Composer
Instalation
composer install
Tests
composer tests
Code Analysis
The command below will run PHPStan level 4 analysis.
composer code-analysis
Examples
A simple interval
$days = (new WorkingDays('2019-06-06', '2019-06-11'))->calculate(); $days->getNumber(); //output: 04 $days->getDayList(); //output: ['2019-06-06', '2019-06-07', '2019-06-10', '2019-06-11']
with holidays list
$holidays = ['2019-06-06']; $days = (new WorkingDays('2019-06-05', '2019-06-11', $holidays))->calculate(); $days->getNumber(); //output: 04 $days->getDayList(); //output: ['2019-06-05', '2019-06-07', '2019-06-10', '2019-06-11']