mirror of
https://github.com/holidayapi/holidayapi-php.git
synced 2025-06-20 20:15:06 +00:00
Seemed overdue to finally drop support for PHP 5.x, as well as 7.x as the 7 series has also reached end of life. Expanded testing to include both the soon to be released 8.3 and the next development version 8.4.
37 lines
727 B
JSON
37 lines
727 B
JSON
{
|
|
"name": "holidayapi/holidayapi-php",
|
|
"description": "Official PHP library for Holiday API",
|
|
"version": "4.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": ">=8.0",
|
|
"ext-json": "*",
|
|
"ext-curl": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"HolidayAPI\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"HolidayAPI\\Tests\\": "tests/"
|
|
}
|
|
}
|
|
}
|