-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 976 Bytes
/
composer.json
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
{
"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": "[email protected]"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "7.*|8.*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^2.15",
"symfony/var-dumper": "^4.3",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"PHPExperts\\WorkdayPlanner\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPExperts\\WorkdayPlanner\\Tests\\": "tests"
}
}
}