forked from spatie/laravel-health
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.85 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
{
"name": "spatie/laravel-health",
"description": "Monitor the health of a Laravel application",
"keywords": [
"spatie",
"laravel",
"laravel-health"
],
"homepage": "https://github.com/spatie/laravel-health",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"dragonmantank/cron-expression": "^3.3.1",
"guzzlehttp/guzzle": "^6.5|^7.4.5|^7.2",
"illuminate/console": "^8.75|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.75|^9.0|^10.0|^11.0",
"illuminate/database": "^8.75|^9.0|^10.0|^11.0",
"illuminate/notifications": "^8.75|^9.0|^10.0|^11.0",
"illuminate/support": "^8.75|^9.0|^10.0|^11.0",
"laravel/serializable-closure": "^1.3",
"nunomaduro/termwind": "^1.0|^2.0",
"spatie/enum": "^3.13",
"spatie/laravel-package-tools": "^1.12.1",
"spatie/regex": "^3.1.1|^3.1",
"spatie/temporary-directory": "^2.2",
"symfony/process": "^5.4|^6.0|^7.0"
},
"require-dev": {
"laravel/horizon": "^5.9.10",
"laravel/slack-notification-channel": "^2.4|^3.2",
"nunomaduro/collision": "^5.10|^6.2.1|^6.1|^8.0",
"larastan/larastan": "^1.0.3|^2.4",
"orchestra/testbench": "^6.23|^7.6|^8.0|^9.0",
"pestphp/pest": "^1.21.3|^2.34",
"pestphp/pest-plugin-laravel": "^1.2|^2.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpunit/phpunit": "^9.5.21|^9.5.10|^10.5",
"spatie/laravel-ray": "^1.30",
"spatie/pest-plugin-snapshots": "^1.1|^2.1",
"spatie/pest-plugin-test-time": "^1.1.1|^1.1|^2.0",
"spatie/test-time": "^1.3"
},
"autoload": {
"psr-4": {
"Spatie\\Health\\": "src",
"Spatie\\Health\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Health\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan --generate-baseline",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Spatie\\Health\\HealthServiceProvider"
],
"aliases": {
"Health": "Spatie\\Health\\Facades\\Health"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}