-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.31 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
{
"name": "generationtux/healthz",
"description": "Health checks for PHP apps.",
"license": "MIT",
"authors": [
{
"name": "Kyle Ferguson",
"email": "[email protected]"
},
{
"name": "Damien Russell",
"email": "[email protected]"
},
{
"name": "Thomas Manley",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Gentux\\Healthz\\": "src/"
},
"classmap": [
"tests/TestCase.php"
]
},
"require": {
"php": ">=7.2.5|^8.0",
"guzzlehttp/guzzle": "^6.2|^7.0.1|^7.2",
"aws/aws-sdk-php": "~3.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
"illuminate/database": "^6.0|^7.0|^8.0|^9.0",
"illuminate/queue": "^6.0|7.0|^8.0|^9.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4|^9.3.3",
"mockery/mockery": "~1.3.3|^1.4.2"
},
"extra": {
"laravel": {
"providers": [
"Gentux\\Healthz\\Support\\HealthzServiceProvider"
]
}
}
}