summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Bridge/Monolog/composer.json
blob: ce7fee470b2472da85baa315a4baacddb13f8e27 (plain)
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
{
    "name": "symfony/monolog-bridge",
    "type": "symfony-bridge",
    "description": "Symfony Monolog Bridge",
    "keywords": [],
    "homepage": "https://symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Symfony Community",
            "homepage": "https://symfony.com/contributors"
        }
    ],
    "require": {
        "php": "^7.1.3",
        "monolog/monolog": "~1.19",
        "symfony/contracts": "^1.0",
        "symfony/http-kernel": "~3.4|~4.0"
    },
    "require-dev": {
        "symfony/console": "~3.4|~4.0",
        "symfony/event-dispatcher": "~3.4|~4.0",
        "symfony/security-core": "~3.4|~4.0",
        "symfony/var-dumper": "~3.4|~4.0"
    },
    "conflict": {
        "symfony/console": "<3.4",
        "symfony/http-foundation": "<3.4"
    },
    "suggest": {
        "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
        "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
        "symfony/event-dispatcher": "Needed when using log messages in console commands.",
        "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
     },
    "autoload": {
        "psr-4": { "Symfony\\Bridge\\Monolog\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "minimum-stability": "dev",
    "extra": {
        "branch-alias": {
            "dev-master": "4.2-dev"
        }
    }
}