-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.38 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
{
"name": "swisnl/date-range",
"type": "library",
"description": "A PHP package for manipulating date ranges.",
"homepage": "https://github.com/swisnl/date-range",
"support": {
"issues": "https://github.com/swisnl/date-range/issues",
"source": "https://github.com/swisnl/date-range"
},
"require": {
"php": "^8.2",
"illuminate/collections": "^9.0|^10.0|^11.0|^12.0",
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
"nesbot/carbon": "^2.71|^3.0"
},
"require-dev": {
"laravel/pint": "^1.5",
"phpstan/phpstan": "^2.1",
"pestphp/pest": "^3.7",
"pestphp/pest-plugin-arch": "^3.0"
},
"autoload": {
"psr-4": {
"Swis\\DateRange\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Rolf van de Krol",
"email": "rvandekrol@swis.nl",
"role": "Developer"
}
],
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}