-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 1.06 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
{
"name": "syonix/log-viewer-lib",
"description": "A library to gather log files from different sources and use them in a unified format.",
"keywords": ["monolog", "viewer", "log","logging"],
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Michael Burri",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">= 8.1",
"doctrine/collections": "^2.2",
"jbroadway/urlify": "^1.0",
"league/flysystem": "^3.0",
"league/flysystem-ftp": "^3.0",
"league/flysystem-sftp-v3": "^3.0",
"symfony/console": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"syonix/monolog-parser": "dev-master",
"monolog/monolog": "^3.7"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.65"
},
"autoload": {
"psr-4": {"Syonix\\LogViewer\\": "lib/"}
}
}