forked from azuyalabs/yasumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 1.77 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "azuyalabs/yasumi",
"description": "The easy PHP Library for calculating holidays",
"license": "MIT",
"type": "library",
"keywords": [
"holiday",
"holidays",
"calendar",
"calculation",
"celebration",
"date",
"time",
"bank",
"national"
],
"readme": "README.md",
"authors": [
{
"name": "Sacha Telgenhof",
"email": "[email protected]",
"role": "Maintainer"
}
],
"homepage": "https://www.yasumi.dev",
"support": {
"issues": "https://github.com/azuyalabs/yasumi/issues",
"source": "https://github.com/azuyalabs/yasumi",
"docs": "https://www.yasumi.dev"
},
"funding": [
{
"type": "other",
"url": "https://www.buymeacoffee.com/sachatelgenhof"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*"
},
"require-dev": {
"ext-intl": "*",
"azuyalabs/php-cs-fixer-config": "^0.3",
"mikey179/vfsstream": "^1.6",
"phan/phan": "^5.4",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^8.5 || ^9.6",
"vimeo/psalm": "^5.20"
},
"suggest": {
"ext-calendar": "For calculating the date of Easter"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Yasumi\\": "src/Yasumi/"
}
},
"autoload-dev": {
"psr-4": {
"Yasumi\\tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"scripts": {
"analyse": [
"@phpstan",
"@psalm"
],
"cs": "vendor/bin/php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix -v",
"phan": "vendor/bin/phan -C",
"phpstan": "vendor/bin/phpstan analyse",
"psalm": "vendor/bin/psalm --threads=2",
"test": "vendor/bin/phpunit"
}
}