-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.22 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.22 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "cmixin/business-day",
"description": "Carbon mixin to handle business days",
"type": "library",
"require": {
"php": ">=7.1",
"nesbot/carbon": "^2.29 || ^3.0.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 || ^8.5.31 || ^9.6.27 || ^10.5.55",
"phpstan/phpstan": "1.* || 2.*",
"phpstan/extension-installer": "*"
},
"autoload": {
"psr-4": {
"Cmixin\\": "src/Cmixin/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "KyleKatarn",
"email": "carbon@selfbuild.fr"
}
],
"minimum-stability": "dev",
"scripts": {
"types": "php types.php"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laravel": {
"providers": [
"Cmixin\\BusinessDay\\Laravel\\ServiceProvider"
]
},
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}