-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.57 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
{
"name": "prgtw/healthchecks-bundle",
"description": "Bundle for integration with healthchecks.io cron monitoring service",
"keywords": [
"symfony",
"bundle",
"healthchecks",
"cron",
"monitoring"
],
"license": "MIT",
"authors": [
{
"name": "Tomasz Wójcik",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"prgTW\\HealthchecksBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"prgTW\\HealthchecksBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.0",
"symfony/config": "^2.8 || ^3.0 || ^4.0",
"symfony/console": "^2.8 || ^3.0 || ^4.0",
"symfony/http-kernel": "^2.8 || ^3.0 || ^4.0",
"symfony/dependency-injection": "^2.8,>=2.8.51 || ^3.0,>=3.4.26 || ^4.1,>=4.1.12 || ^4.2,>=4.2.7",
"symfony/process": "^2.8 || ^3.0 || ^4.0",
"symfony/options-resolver": "^2.8 || ^3.0 || ^4.0",
"jms/serializer": "^1.6 || ^2.0 || ^3.0",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.5.1",
"psr/http-message-implementation": "^1.0",
"php-http/client-implementation": "^1.0",
"jms/serializer-bundle": "^1.5 || ^2.0 || ^3.0",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"guzzlehttp/psr7": "^1.4",
"php-http/message": "^1.5",
"php-http/mock-client": "^1.0"
}
}