mirror of
https://github.com/holidayapi/holidayapi-php.git
synced 2025-06-21 04:16:31 +00:00
Added the ability to get the previous workday by passing in a negative number of days along with the date to start from. This update also includes some overhauling to allow for the library to be more resilient to changes in the upstream API.
37 lines
738 B
JSON
37 lines
738 B
JSON
{
|
|
"name": "holidayapi/holidayapi-php",
|
|
"description": "Official PHP library for Holiday API",
|
|
"version": "3.0.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",
|
|
"ext-json": "*",
|
|
"ext-curl": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^4.8.36 || ^9.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"HolidayAPI\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"HolidayAPI\\Tests\\": "tests/"
|
|
}
|
|
}
|
|
}
|