This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
php-holidayapi/README.md
2016-08-11 21:01:41 -05:00

30 lines
517 B
Markdown

# php-holidayapi
Official PHP library for [Holiday API](https://holidayapi.com)
## Installation
```shell
composer require "joshtronic/php-holidayapi:dev-master"
```
## Usage
```php
$hapi = new HolidayAPI\v1('_YOUR_API_KEY_');
$parameters = array(
// Required
'country' => 'US',
'year' => 2016,
// Optional
// 'month' => 7,
// 'day' => 4,
// 'previous' => true,
// 'upcoming' => true,
// 'public' => true,
// 'pretty' => true,
);
$response = $hapi->holidays($parameters);
```