Skip to content

Commit

Permalink
add docs for contributing + add example for regions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nielsvanpach committed Jan 18, 2024
1 parent fedcae8 commit 276cea6
Show file tree
Hide file tree
Showing 5 changed files with 106 additions and 10 deletions.
41 changes: 32 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Spatie\Holidays\Holidays;

// returns an array of Belgian holidays
// for the current year
$holidays = Holidays::for('be')->get();
$holidays = Holidays::for('be')->get();
```

## Support us
Expand Down Expand Up @@ -40,21 +40,22 @@ You can get all holidays for a country by using the `get` method.

```php
use Spatie\Holidays\Holidays;
use Spatie\Holidays\Countries\Belgium;

// returns an array of Belgian holidays
// for the current year
$holidays = Holidays::for('be')->get();
$holidays = Holidays::for(Belgium::make())->get();
```

Alternatively, you could also pass an instance of `Country` to the `for` method.
Alternatively, you could also pass an ISO code to the `for` method.
But region specific holidays will not be included.

```php
use Spatie\Holidays\Holidays;
use Spatie\Holidays\Countries\Belgium;

// returns an array of Belgian holidays
// for the current year
$holidays = Holidays::for(Belgium::make())->get();
$holidays = Holidays::for('be')->get();
```

### Getting holidays for a specific year
Expand Down Expand Up @@ -87,6 +88,32 @@ use Spatie\Holidays\Holidays;
Holidays::for('be')->getName('2024-01-01'); // Nieuwjaar
```

## Contributing a new country

If you want to add a new country, you can create a pull request.

1. Create a new class in the `Countries` directory. It should extend the `Country` class.
2. Add a test for the new country in the `tests` directory.

In case your country has specific rules for calculating holidays,
for example region specific holidays, you can pass this to the constructor of your country class.

```php
$holidays = Holidays::for(Germany::make(region: 'de-bw'))->get();

class Austria extends Country
{
public function __construct(
protected ?string $region = null,
) {
}
}
```

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for more details.



## Testing

```bash
Expand All @@ -97,10 +124,6 @@ composer test

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Contributing

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.

## Security Vulnerabilities

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
Expand Down
5 changes: 5 additions & 0 deletions src/Countries/Austria.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

class Austria extends Country
{
protected function __construct(
public ?string $region = null
) {
}

public function countryCode(): string
{
return 'at';
Expand Down
3 changes: 2 additions & 1 deletion src/Countries/Country.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Spatie\Holidays\Countries;

use Carbon\CarbonImmutable;
use ReflectionClass;
use Spatie\Holidays\Exceptions\InvalidYear;
use Spatie\Holidays\Exceptions\UnsupportedCountry;

Expand Down Expand Up @@ -37,7 +38,7 @@ public function get(int $year): array

public static function make(): static
{
return new static();
return new static(...func_get_args());
}

public static function find(string $countryCode): ?Country
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[
{
"name": "Neujahr",
"date": "2024-01-01"
},
{
"name": "Heilige Drei K\u00f6nige",
"date": "2024-01-06"
},
{
"name": "Ostermontag",
"date": "2024-04-01"
},
{
"name": "Staatsfeiertag",
"date": "2024-05-01"
},
{
"name": "Christi Himmelfahrt",
"date": "2024-05-09"
},
{
"name": "Pfingstmontag",
"date": "2024-05-20"
},
{
"name": "Fronleichnam",
"date": "2024-05-30"
},
{
"name": "Mari\u00e4 Himmelfahrt",
"date": "2024-08-15"
},
{
"name": "Nationalfeiertag",
"date": "2024-10-26"
},
{
"name": "Allerheiligen",
"date": "2024-11-01"
},
{
"name": "Mari\u00e4 Empf\u00e4ngnis",
"date": "2024-12-08"
},
{
"name": "Christtag",
"date": "2024-12-25"
},
{
"name": "Stefanitag",
"date": "2024-12-26"
}
]
13 changes: 13 additions & 0 deletions tests/Countries/AustriaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Spatie\Holidays\Tests\Countries;

use Carbon\CarbonImmutable;
use Spatie\Holidays\Countries\Austria;
use Spatie\Holidays\Holidays;

it('can calculate austrian holidays', function () {
Expand All @@ -16,3 +17,15 @@

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

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

$holidays = Holidays::for(Austria::make('bg'))->get();

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

expect(formatDates($holidays))->toMatchSnapshot();
})->skip('Austria class has to be extended with regions first.');

0 comments on commit 276cea6

Please sign in to comment.