-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.01 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
{
"name": "stepanenko3/nova-health",
"description": "Laravel Nova tool for checking healthy of your Laravel app",
"keywords": [
"laravel",
"nova",
"health"
],
"license": "MIT",
"require": {
"php": ">=8.0",
"laravel/nova": "^4.0|^5.0",
"spatie/cpu-load-health-check": "^1.0",
"spatie/laravel-health": "^1.9",
"spatie/ssl-certificate": "^2.6"
},
"repositories": [
{
"type": "composer",
"url": "https://laravelsatis.com"
}
],
"autoload": {
"psr-4": {
"Stepanenko3\\NovaHealth\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Stepanenko3\\NovaHealth\\ToolServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpstan/phpstan": "^2.0",
"tightenco/duster": "^3.0"
}
}