forked from hughgrigg/php-business-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.06 KB
/
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
37
38
{
"name": "hughgrigg/php-business-time",
"description": "Business time / working days extension for Carbon dates",
"version": "1.1.2",
"type": "library",
"require": {
"php": "^7.0",
"nesbot/carbon": "^1.25 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.4",
"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",
"phpunit/phpunit-mock-objects": "^5.0 || ^6.1",
"guzzlehttp/psr7": "^1.4"
},
"suggest": {
"guzzlehttp/guzzle": "Required for using remote sources"
},
"license": "MIT",
"authors": [
{
"name": "Hugh Grigg",
"email": "hugh.grigg@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"BusinessTime\\": "src/",
"BusinessTime\\Tests\\": "tests/"
}
}
}