This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
generated from spawnia/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.52 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": "mll-lab/holidays",
"type": "library",
"description": "PHP package to evaluate if a day is a holiday",
"homepage": "https://github.com/mll-lab/holidays",
"license": "MIT",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8",
"ext-calendar": "*",
"nesbot/carbon": "^2.53",
"thecodingmachine/safe": "^1 || ^2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"infection/infection": "~0.25",
"jangregor/phpstan-prophecy": "^1",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9 || ^10",
"symfony/var-dumper": "^5 || ^6",
"thecodingmachine/phpstan-safe-rule": "^1"
},
"config": {
"platform": {
"php": "7.4.24"
},
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"MLL\\Holidays\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MLL\\Holidays\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"support": {
"issues": "https://github.com/mll-lab/holidays/issues",
"source": "https://github.com/mll-lab/holidays"
}
}