-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1015 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 1015 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "phpexperts/workday-planner",
"description": "Given a date range, this will give you all of the workdays for that country.",
"homepage": "https://github.com/phpexpertsinc/workday-planner",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"email": "theodore@phpexperts.pro"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "10.*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "*",
"symfony/var-dumper": "*",
"squizlabs/php_codesniffer": "*"
},
"suggest": {
"ext-calendar": "*"
},
"autoload": {
"psr-4": {
"PHPExperts\\WorkdayPlanner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPExperts\\WorkdayPlanner\\Tests\\": "tests"
}
}
}