-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.05 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
{
"name": "rob-lester-jr04/laravel-health-expansion",
"description": "An expansion pack for Spatie Laravel Health package",
"keywords": ["spatie", "health", "health-check", "healthcheck", "expansion", "mailgun", "papertrail"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Lester\\Health\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Robert Lester",
"email": "[email protected]"
}
],
"require": {
"spatie/laravel-health": "^1.22",
"guzzlehttp/guzzle": "^7.7",
"mailgun/mailgun-php": "^3.5",
"nesbot/carbon": "^2.67|^3.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"Lester\\Health\\HealthServiceProvider",
"Spatie\\Health\\HealthServiceProvider"
],
"aliases": {
"Health": "Spatie\\Health\\Facades\\Health"
}
}
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"orchestra/testbench": "^6.23|^7.6|^8.0"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}