forked from theorchard/monolog-cascade
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.58 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
52
53
54
{
"name": "bamboohr/monolog-cascade",
"license": "MIT",
"type": "library",
"description": "Monolog extension to configure multiple loggers in the blink of an eye and access them from anywhere",
"keywords": [
"monolog",
"cascade",
"monolog extension",
"monolog plugin",
"monolog utils",
"logger",
"log"
],
"comment": "This is a fork of the original monolog-cascade package. The original package is lacking some updates and features that we need. This fork is intended to be a temporary solution until the original package is updated.",
"authors": [
{
"name": "Raphaël Antonmattei",
"email": "[email protected]",
"homepage": "https://github.com/rantonmattei"
},
{
"name": "Brett Millett",
"email": "[email protected]"
}
],
"homepage": "https://github.com/bamboohr/monolog-cascade",
"require": {
"php": ">=8.1",
"symfony/config": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.3",
"symfony/options-resolver": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.3",
"symfony/serializer": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.3",
"symfony/yaml": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.3",
"monolog/monolog": "^1.13 || ^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Cascade\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cascade\\Tests\\": "tests/"
}
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpcov": "^8.2",
"phpunit/phpunit": "^9.3",
"php-coveralls/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": "^2.5"
},
"prefer-stable": true
}