-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
36 lines (36 loc) · 993 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": "hughgrigg/php-business-time",
"description": "Business time / working days extension for Carbon dates",
"type": "library",
"require": {
"php": "^8.0",
"nesbot/carbon": "^1.2 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "@stable",
"johnkary/phpunit-speedtrap": "^2.0 || ^3.0",
"php-coveralls/php-coveralls": "^2.0",
"guzzlehttp/guzzle": "^6.3",
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^1.4"
},
"suggest": {
"guzzlehttp/guzzle": "Required for using remote sources"
},
"license": "MIT",
"authors": [
{
"name": "Hugh Grigg",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"BusinessTime\\": "src/",
"BusinessTime\\Tests\\": "tests/"
}
}
}