forked from antonioribeiro/health
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.61 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
{
"name": "kwxs/health",
"description": "Laravel Server & App Health Monitor and Notifier",
"keywords": [
"health",
"laravel",
"pragmarx",
"notifications",
"panel",
"monitor",
"server",
"app"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "[email protected]",
"role": "Creator & Designer"
}
],
"require": {
"php": ">=7.0",
"illuminate/support": "^7.0",
"pragmarx/yaml": ">=0.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpunit/php-timer": "^2.1.2",
"laravel/laravel": "^7.0",
"orchestra/testbench": ">=5.2.0",
"guzzlehttp/guzzle": "~6.0",
"predis/predis": "^1.0",
"nesbot/carbon": ">=1.34"
},
"suggest": {
"guzzlehttp/guzzle": "~6.0",
"predis/predis": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0"
},
"autoload": {
"files": [
"src/Support/Throwable.php",
"src/Support/helpers.php"
],
"psr-4": {
"PragmaRX\\Health\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PragmaRX\\Health\\Tests\\PhpUnit\\": "tests/PhpUnit/"
}
},
"extra": {
"laravel": {
"providers": [
"PragmaRX\\Health\\ServiceProvider"
]
}
},
"scripts": {
"test": [
"@composer install",
"vendor/bin/phpunit"
]
}
}