Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Philippine national holidays #25

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions src/Countries/Philippines.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php

namespace Spatie\Holidays\Countries;

use Carbon\CarbonImmutable;

class Philippines extends Country
{
public function countryCode(): string
{
return 'ph';
}

protected function allHolidays(int $year): array
{
return array_merge([
'New Year\'s Day' => '01-01',
'Araw ng Kagitingan' => '04-09',
'Labor Day' => '05-01',
'Independence Day' => '06-12',
'Bonifacio Day' => '11-27',
'Christmas Day' => '12-25',
'Rizal Day' => '12-30',
], $this->variableHolidays($year));
}

/** @return array<string, string|CarbonImmutable> */
protected function variableHolidays(int $year): array
{
$nationalHeroes = new CarbonImmutable("last monday of august {$year}");

$easter = CarbonImmutable::createFromTimestamp(easter_date($year))
->setTimezone('Asia/Manila');

return [
'Maundy Thursday' => $easter->subDays(3),
'Good Friday' => $easter->subDays(2),
'National Heroes Day' => $nationalHeroes,
];
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"name": "New Year's Day",
"date": "2024-01-01"
},
{
"name": "Maundy Thursday",
"date": "2024-03-28"
},
{
"name": "Good Friday",
"date": "2024-03-29"
},
{
"name": "Araw ng Kagitingan",
"date": "2024-04-09"
},
{
"name": "Labor Day",
"date": "2024-05-01"
},
{
"name": "Independence Day",
"date": "2024-06-12"
},
{
"name": "National Heroes Day",
"date": "2024-08-26"
},
{
"name": "Bonifacio Day",
"date": "2024-11-27"
},
{
"name": "Christmas Day",
"date": "2024-12-25"
},
{
"name": "Rizal Day",
"date": "2024-12-30"
}
]
19 changes: 19 additions & 0 deletions tests/Countries/PhilippinesTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

namespace Spatie\Holidays\Tests\Countries;

use Carbon\CarbonImmutable;
use Spatie\Holidays\Holidays;

it('can calculate philippine holidays', function () {
CarbonImmutable::setTestNowAndTimezone('2024-01-01');

$holidays = Holidays::for(country: 'ph')->get();

expect($holidays)
->toBeArray()
->not()->toBeEmpty();

expect(formatDates($holidays))->toMatchSnapshot();

});