-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
100 lines (90 loc) · 3.05 KB
/
composer.json
File metadata and controls
100 lines (90 loc) · 3.05 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "fivelab/diagnostic",
"description": "The library for diagnostic application.",
"keywords": ["health", "check"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vitaliy Zhuk",
"email": "v.zhuk@fivelab.org"
},
{
"name": "FiveLab Team",
"email": "dev@fivelab.org",
"homepage": "https://fivelab.org"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"symfony/event-dispatcher": "~6.4 | ~7.0"
},
"require-dev": {
"ext-amqp": "*",
"ext-redis": "*",
"ext-curl": "*",
"ext-mongodb": "*",
"ext-pdo": "*",
"ext-sockets": "*",
"ext-openssl": "*",
"phpunit/phpunit": "~11.5",
"phpmetrics/phpmetrics": "~3.0",
"phpstan/phpstan": "~2.0",
"escapestudios/symfony2-coding-standard": "~3.5.0",
"fivelab/ci-rules": "dev-master",
"symfony/dependency-injection": "~5.4 | ~6.0 | ~7.0",
"symfony/console": "~6.4 | ~7.0",
"symfony/cache": "~6.4 | ~7.0",
"symfony/mailer": "~6.4 | ~7.0",
"doctrine/dbal": "~2.2 | ~3.0",
"guzzlehttp/guzzle": "~7.0",
"guzzlehttp/psr7": "~2.0",
"composer/semver": "~1.0",
"predis/predis": "~2.0",
"doctrine/orm": "~2.6",
"doctrine/annotations": "~1.13",
"illuminate/database": "~10.0",
"aws/aws-sdk-php": "~3.0",
"php-amqplib/php-amqplib": "^3.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"ext-pdo": "For check connection via PDO.",
"symfony/dependency-injection": "Add diagnostic checks by tag to container.",
"symfony/console": "For run diagnostic commands",
"doctrine/dbal": "For check connect to database via DBAL connection.",
"doctrine/orm": "For check access to tables.",
"psr/http-client-implementation": "For HTTP checks resources",
"psr/http-message-implementation:": "For HTTP checks resources.",
"composer/semver": "For compare versions.",
"elasticsearch/elasticsearch": "For check connect and existence some indices/templates/etc... in elasticsearch.",
"illuminate/database": "For check connect to database via illuminate components.",
"aws/aws-sdk-php": "For check AWS services.",
"opensearch-project/opensearch-php": "For check connect and existence some indices/templates/etc... in opensearch."
},
"autoload": {
"psr-4": {
"FiveLab\\Component\\Diagnostic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FiveLab\\Component\\Diagnostic\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
},
"extra": {
"thanks": {
"name": "fivelab/diagnostic",
"url": "https://github.com/FiveLab/Diagnostic"
}
}
}