forked from ans-group/laravel-health-check
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
82 lines (82 loc) · 2.59 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
{
"name": "ans-group/laravel-health-check",
"description": "A package for checking the health of your Laravel/Lumen applications.",
"keywords": [
"ukfast",
"laravel-health-check",
"lumen-health-check",
"ukfast-health-check",
"laravel",
"lumen"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Kelly",
"email": "[email protected]",
"role": "Author & Maintainer"
},
{
"name": "Tyler Woonton",
"email": "[email protected]",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/ukfast/laravel-health-check/issues",
"source": "https://github.com/ukfast/laravel-health-check/tree/master"
},
"autoload": {
"psr-4": {
"UKFast\\HealthCheck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"UKFast\\HealthCheck\\HealthCheckServiceProvider"
],
"aliases": {
"HealthCheck": "UKFast\\HealthCheck\\Facade\\HealthCheck"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"prefer-stable": true,
"require": {
"php": ">=5.6",
"ext-json": "*",
"illuminate/support": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/http": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/console": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
"nesbot/carbon": "^1.26.3|^2.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.0 <10",
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^8.0",
"mockery/mockery": "^1.0",
"illuminate/database": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/log": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/redis": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
"guzzlehttp/guzzle": ">=5.6.3"
},
"suggest": {
"illuminate/database": "Allows the database health check to function.",
"illuminate/log": "Allows the log health check to function.",
"illuminate/redis": "Allows the redis health check to function.",
"league/flysystem": "Allows the ftp health check to function.",
"guzzlehttp/guzzle": "Allows the http health check to function.",
"sensiolabs/security-checker": "Allows the package security health check to function."
}
}