forked from checkdomain/Holiday
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 743 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "checkdomain/holiday",
"description": "Checkdomain/Holiday provides a simple class to get holidays for a specified country",
"keywords": ["holiday"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Benjamin Paap",
"email": "b.paap@checkdomain.de",
"homepage": "http://checkdomain.de"
}
],
"require": {
"php": ">=5.6",
"ext-calendar": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": { "Checkdomain\\Holiday\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Checkdomain\\Holiday\\": "test/" }
}
}