-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
98 lines (98 loc) · 2.26 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "speicher210/business-hours",
"description": "DateTime and business hours (opening, closing times) calculations",
"license": "MIT",
"type": "library",
"keywords": [
"business",
"opening",
"closing",
"hours"
],
"authors": [
{
"name": "Dragos Protung",
"email": "dragos@protung.de",
"role": "Developer"
},
{
"name": "Cezary Stępkowski",
"email": "cezary.stepkowski@speicher210.com",
"role": "Developer"
}
],
"homepage": "https://github.com/Speicher210/business-hours",
"require": {
"php": "~8.2.0 || ~8.3.0",
"ext-json": "*",
"azjezz/psl": "^3.0.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"doctrine/coding-standard": "^10.0",
"ekino/phpstan-banned-code": "^1.0",
"ergebnis/composer-normalize": "^2.29",
"phpstan/phpstan": "^1.9.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.2.2",
"phpstan/phpstan-strict-rules": "^1.4.4",
"phpstan/phpstan-webmozart-assert": "^1.2.2",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.1"
},
"conflict": {
"nikic/php-parser": "<4.13.2"
},
"autoload": {
"psr-4": {
"Speicher210\\BusinessHours\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Speicher210\\BusinessHours\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"scripts": {
"analyse": [
"@analyse-phpstan",
"@analyse-psalm"
],
"analyse-phpstan": [
"phpstan analyse"
],
"analyse-phpstan-update": [
"phpstan analyse --generate-baseline"
],
"analyse-psalm": [
"psalm --show-info=false"
],
"analyse-psalm-update": [
"psalm --set-baseline=psalm.baseline.xml"
],
"check": [
"composer validate",
"composer normalize --dry-run",
"@cs-check",
"@analyse",
"@test"
],
"cs-check": "phpcs -p",
"cs-fix": "phpcbf -p",
"test": "phpunit --testdox"
}
}