-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.73 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
{
"name" : "fastbolt/working-day-provider",
"description" : "PHP package to ease calculation of number of working days between two dates.",
"type" : "library",
"require" : {
"php" : "^7.4|^8.0|^8.1",
"webmozart/assert" : "^1.11"
},
"require-dev" : {
"fastbolt/test-helpers" : "^0.2.0",
"fig-r/psr2r-sniffer" : "^1.5",
"phpmd/phpmd" : "^2.13",
"phpstan/phpstan" : "^1.10",
"phpunit/phpunit" : "^9.5",
"psalm/plugin-phpunit" : "^0.18.4",
"slevomat/coding-standard" : "^7.2.1",
"spryker/code-sniffer" : "^0.17.18",
"squizlabs/php_codesniffer" : "^3.7",
"vimeo/psalm" : "^5.9"
},
"homepage" : "https://github.com/fastbolt/working-day-provider",
"license" : "MIT",
"autoload" : {
"psr-4" : {
"Fastbolt\\WorkingDayProvider\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Fastbolt\\WorkingDayProvider\\Tests\\_Fixtures\\" : "tests/_Fixtures/",
"Fastbolt\\WorkingDayProvider\\Tests\\Unit\\" : "tests/unit/"
}
},
"scripts" : {
"phpunit" : "vendor/bin/phpunit",
"check-style" : "vendor/bin/phpcs",
"psalm" : "vendor/bin/psalm",
"fix-style" : "vendor/bin/phpcbf",
"test" : [
"@phpunit",
"@psalm",
"@check-style"
]
},
"config" : {
"sort-packages" : true,
"preferred-install" : "dist",
"allow-plugins" : {
"dealerdirect/phpcodesniffer-composer-installer" : true
}
},
"authors" : [
{
"name" : "Daniel Hirtzbruch",
"email" : "[email protected]"
}
],
"prefer-stable" : true
}