generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
composer.json
65 lines (65 loc) · 1.7 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
62
63
64
65
{
"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",
"ext-intl": "*",
"ext-calendar": "*",
"nesbot/carbon": "^2.72.1|^3.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"laravel/prompts": "^0.3.0",
"pestphp/pest": "^2.31",
"phpstan/phpstan": "^1.10.56",
"rector/rector": "^1.0",
"spatie/invade": "^2.0",
"spatie/ray": "^1.40.1",
"symfony/var-dumper": "^6.4|^7.1"
},
"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 --compact",
"rector": "vendor/bin/rector process --dry-run",
"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
}