forked from maxbanton/cwh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "maxbanton/cwh",
"homepage": "https://github.com/maxbanton/cwh",
"type": "library",
"description": "AWS CloudWatch Handler for Monolog library",
"keywords": [
"aws",
"cloudwatch",
"monolog"
],
"license": "MIT",
"authors": [
{
"name": "Max Leonov",
"email": "[email protected]",
"homepage": "https://maxleonov.pw"
}
],
"support": {
"issues": "https://github.com/maxbanton/cwh/issues",
"source": "https://github.com/maxbanton/cwh"
},
"require": {
"php": "^7.2 || ^8",
"monolog/monolog": "^2.0",
"aws/aws-sdk-php": "^3.18"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.4",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"maxbanton/dd": "Minimalistic dump-and-die function for easy debugging"
},
"config": {
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"Maxbanton\\Cwh\\": "src"
}
},
"minimum-stability": "stable"
}