holidayapi-php/composer.json
Josh Sherman 95bba75265 feat: add workdays endpoint
Added support for our new workdays endpoint that allows you to get the
number of working days for a country between two dates.
2021-06-14 18:01:47 -05:00

37 lines
738 B
JSON

{
"name": "holidayapi/holidayapi-php",
"description": "Official PHP library for Holiday API",
"version": "2.4.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/"
}
}
}