-
-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.14 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.14 KB
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
{
"name": "symfony/monolog-bundle",
"type": "symfony-bundle",
"description": "Symfony MonologBundle",
"keywords": ["log", "logging"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=8.2",
"composer-runtime-api": "^2.0",
"monolog/monolog": "^3.6",
"symfony/config": "^7.3 || ^8.0",
"symfony/dependency-injection": "^7.3 || ^8.0",
"symfony/http-kernel": "^7.3 || ^8.0",
"symfony/monolog-bridge": "^7.3 || ^8.0",
"symfony/polyfill-php84": "^1.30"
},
"require-dev": {
"phpunit/phpunit": "^11.5.41 || ^12.3",
"symfony/console": "^7.3 || ^8.0",
"symfony/yaml": "^7.3 || ^8.0"
},
"autoload": {
"psr-4": { "Symfony\\Bundle\\MonologBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Symfony\\Bundle\\MonologBundle\\Tests\\": "tests" }
}
}