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

Adds support for Portuguese Holidays #9

Merged
merged 8 commits into from
Jan 18, 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
42 changes: 42 additions & 0 deletions src/Countries/Portugal.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

namespace Spatie\Holidays\Countries;

use Carbon\CarbonImmutable;

class Portugal extends Country
{
public function countryCode(): string
{
return 'pt';
}

protected function allHolidays(int $year): array
{
return array_merge([
'Dia de Ano Novo' => '01-01',
'Dia da Liberdade' => '04-25',
'Dia do Trabalhador' => '05-01',
'Dia de Portugal' => '06-10',
'Assunção da Nossa Senhora' => '08-15',
'Implantação da República' => '10-05',
'Dia de Todos os Santos' => '11-01',
'Restauração da Independência' => '12-01',
'Imaculada Conceição' => '12-08',
'Natal' => '12-25'
], $this->variableHolidays($year));
}

/** @return array<string, CarbonImmutable> */
protected function variableHolidays(int $year): array
{
$easter = CarbonImmutable::createFromTimestamp(easter_date($year))
->setTimezone('Europe/Lisbon');

return [
'Páscoa' => $easter,
'Sexta-feira Santa' => $easter->subDays(2),
'Corpo de Deus' => $easter->addDays(60),
];
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[
{
"name": "Dia de Ano Novo",
"date": "2024-01-01"
},
{
"name": "Sexta-feira Santa",
"date": "2024-03-29"
},
{
"name": "P\u00e1scoa",
"date": "2024-03-31"
},
{
"name": "Dia da Liberdade",
"date": "2024-04-25"
},
{
"name": "Dia do Trabalhador",
"date": "2024-05-01"
},
{
"name": "Corpo de Deus",
"date": "2024-05-30"
},
{
"name": "Dia de Portugal",
"date": "2024-06-10"
},
{
"name": "Assun\u00e7\u00e3o da Nossa Senhora",
"date": "2024-08-15"
},
{
"name": "Implanta\u00e7\u00e3o da Rep\u00fablica",
"date": "2024-10-05"
},
{
"name": "Dia de Todos os Santos",
"date": "2024-11-01"
},
{
"name": "Restaura\u00e7\u00e3o da Independ\u00eancia",
"date": "2024-12-01"
},
{
"name": "Imaculada Concei\u00e7\u00e3o",
"date": "2024-12-08"
},
{
"name": "Natal",
"date": "2024-12-25"
}
]
19 changes: 19 additions & 0 deletions tests/Countries/PortugalTest.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 portuguese holidays', function () {
CarbonImmutable::setTestNowAndTimezone('2024-01-01');

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

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

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

});