-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 895 Bytes
/
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
{
"description": "Easy logging.",
"homepage": "https://jlog.io",
"name": "johndodev/jlog-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["log", "logging", "bundle", "symfony"],
"authors": [
{
"name": "Johndodev",
"homepage": "https://jonathan-plantey.fr/"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"monolog/monolog": "^3.0",
"symfony/console": "^7.1",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/stopwatch": "^7.1"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Johndodev\\JlogBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Symfony\\JlogBundle\\Tests\\": "tests/" }
}
}