-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 785 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 785 Bytes
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
{
"name": "bref/monolog-bridge",
"description": "Monolog formatter optimized for AWS Lambda and CloudWatch",
"keywords": ["bref", "monolog", "aws", "lambda", "cloudwatch"],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Bref\\Monolog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bref\\Monolog\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"monolog/monolog": "^2.4|^3"
},
"require-dev": {
"phpunit/phpunit": "^9.6|^10.5|^11|^12",
"mnapoli/hard-mode": "^0.3",
"phpstan/phpstan": "^1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}