diff options
Diffstat (limited to 'src/Symfony/Bridge/Monolog')
| -rw-r--r-- | src/Symfony/Bridge/Monolog/composer.json | 46 | 
1 files changed, 46 insertions, 0 deletions
| diff --git a/src/Symfony/Bridge/Monolog/composer.json b/src/Symfony/Bridge/Monolog/composer.json new file mode 100644 index 0000000..97dd19e --- /dev/null +++ b/src/Symfony/Bridge/Monolog/composer.json @@ -0,0 +1,46 @@ +{ +    "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.25.1", +        "symfony/service-contracts": "^1.1|^2", +        "symfony/http-kernel": "^4.3" +    }, +    "require-dev": { +        "symfony/console": "^3.4|^4.0|^5.0", +        "symfony/http-client": "^4.4|^5.0", +        "symfony/security-core": "^3.4|^4.0|^5.0", +        "symfony/var-dumper": "^3.4|^4.0|^5.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/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" +} | 
