-
Notifications
You must be signed in to change notification settings - Fork 196
/
composer.json
73 lines (73 loc) · 1.83 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
{
"name": "pragmarx/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": "acr@antoniocarlosribeiro.com",
"role": "Creator & Designer"
}
],
"require": {
"php": ">=7.3",
"illuminate/support": ">=8.0",
"pragmarx/yaml": ">=0.1",
"phpunit/php-timer": "^1.0|^2.0|^3.0|^4.0|^5.0|^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=6.5",
"laravel/laravel": ">=8.0",
"orchestra/testbench": "5.*|6.*|7.*|8.*|9.*",
"guzzlehttp/guzzle": ">=6.0",
"docusign/esign-client": ">=2.0",
"predis/predis": ">=1.0",
"nesbot/carbon": ">=1.34",
"laravel/framework": "9.*|10.*|11.*"
},
"suggest": {
"guzzlehttp/guzzle": ">=6.0",
"docusign/esign-client": ">=2.0",
"predis/predis": ">=1.0",
"league/flysystem-aws-s3-v3": ">=1.0",
"sensiolabs/security-checker": ">=4.1",
"spatie/ssl-certificate": ">=1.0"
},
"autoload": {
"files": [
"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"
]
}
}