-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 889 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 889 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
{
"name": "stackify/monolog",
"description": "Stackify logs and errors for Monolog",
"keywords": ["log", "logging", "psr-3", "stackify", "monolog", "log4php"],
"homepage": "https://github.com/stackify/stackify-log-monolog",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": ">=8.1",
"stackify/logger": "~1.6 || ~2.0",
"monolog/monolog": "~3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"Stackify\\Log\\Monolog\\": "src/Stackify/Log/Monolog"
}
},
"autoload-dev": {
"psr-4": {"Stackify\\Log\\Monolog\\Tests\\": "tests/"}
},
"minimum-stability": "dev",
"prefer-stable": true
}