forked from spatie/holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "spatie/holidays",
"description": "Calculate public holidays",
"keywords": [
"spatie",
"holidays"
],
"homepage": "https://github.com/spatie/holidays",
"license": "MIT",
"authors": [
{
"name": "Niels Vanpachtenbeke",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"nesbot/carbon": "^2.72.1",
"ext-calendar": "*"
},
"require-dev": {
"laravel/pint": "^1.0",
"laravel/prompts": "^0.1.15",
"pestphp/pest": "^2.31",
"phpstan/phpstan": "^1.10.56",
"spatie/ray": "^1.40.1",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"Spatie\\Holidays\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Holidays\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --generate-baseline",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}