-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.74 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
{
"name": "tomshaw/laravel-calendar-table",
"description": "A Laravel calendar table database migration and console command.",
"keywords": [
"laravel",
"console",
"artisan",
"command"
],
"license": "MIT",
"authors": [
{
"name": "Tom Shaw",
"email": "tomshaw@tomshaw.us",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"geoffreyrose/us-holidays": "^2.5"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.10|^2.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^8.5|^9.0",
"pestphp/pest": "^2.8|^3.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1.1|^11.0"
},
"autoload": {
"psr-4": {
"TomShaw\\CalendarTable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TomShaw\\CalendarTable\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --ansi --memory-limit=-1 --generate-baseline --allow-empty-baseline",
"test": "vendor/bin/phpunit",
"format": "vendor/bin/pint --config pint.json"
},
"suggest": {
"geoffreyrose/us-holidays": "Extends Carbon and adds support for 42 US holidays."
},
"extra": {
"laravel": {
"providers": [
"TomShaw\\CalendarTable\\Providers\\CalendarTableServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}