forked from henrywhitaker3/PHP-healthchecks.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "henrywhitaker3/healthchecks-io",
"description": "A simple PHP healthchecks.io wrapper",
"keywords": [
"healthchecks", "healthchecks.io", "wrapper", "api"
],
"homepage": "https://github.com/henrywhitaker3/PHP-healthchecks.io",
"type": "library",
"require": {
"php": ">=7.2.5",
"ramsey/uuid": "^4.1",
"rakit/validation": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"vlucas/phpdotenv": "^5.1",
"phpstan/phpstan": "^0.12.37"
},
"license": "MIT",
"authors": [
{
"name": "Henry Whitaker",
"email": "henrywhitaker3@outlook.com",
"homepage": "https://github.com/henrywhitaker3"
}
],
"autoload": {
"psr-4": {
"Henrywhitaker3\\Healthchecks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Henrywhitaker3\\Healthchecks\\Tests\\": "tests/"
}
}
}