mirror of
https://github.com/holidayapi/holidayapi-php.git
synced 2025-06-21 12:16:31 +00:00
* feat: pull country or language by code. This differs from the existing `search` functionality in that it allows you to explicitly pull back a single country or language instead of anything that matches (which could result in more items returned than expected). * docs(readme): update to include examples for new functionality. * test: expand tests to include new parameters. * fix(client): dropped some commented out code that wasn't in use. * docs(license): bump the year of the license.
29 lines
632 B
JSON
29 lines
632 B
JSON
{
|
|
"name": "holidayapi/holidayapi-php",
|
|
"description": "Official PHP library for Holiday API",
|
|
"version": "2.2.0",
|
|
"type": "library",
|
|
"keywords": [
|
|
"calendar",
|
|
"holiday",
|
|
"holidays",
|
|
"holidayapi"
|
|
],
|
|
"homepage": "https://github.com/holidayapi/holidayapi-php",
|
|
"license": "MIT",
|
|
"authors": [{
|
|
"name": "Josh Sherman",
|
|
"email": "hello@holidayapi.com",
|
|
"homepage": "https://holidayapi.com"
|
|
}],
|
|
"require": {
|
|
"php": ">=5.3"
|
|
},
|
|
"require-dev": {
|
|
"php-coveralls/php-coveralls": ">=1",
|
|
"phpunit/phpunit": ">=4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": { "HolidayAPI\\": "src/" }
|
|
}
|
|
}
|