composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "symfony/monolog-bridge",
  3. "type": "symfony-bridge",
  4. "description": "Provides integration for Monolog with various Symfony components",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "monolog/monolog": "^1.25.1|^2",
  21. "symfony/service-contracts": "^1.1|^2",
  22. "symfony/http-kernel": "^4.4|^5.0",
  23. "symfony/deprecation-contracts": "^2.1"
  24. },
  25. "require-dev": {
  26. "symfony/console": "^4.4|^5.0",
  27. "symfony/http-client": "^4.4|^5.0",
  28. "symfony/security-core": "^4.4|^5.0",
  29. "symfony/var-dumper": "^4.4|^5.0",
  30. "symfony/mailer": "^4.4|^5.0",
  31. "symfony/mime": "^4.4|^5.0"
  32. },
  33. "conflict": {
  34. "symfony/console": "<4.4",
  35. "symfony/http-foundation": "<4.4"
  36. },
  37. "suggest": {
  38. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  39. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  40. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  41. },
  42. "autoload": {
  43. "psr-4": { "Symfony\\Bridge\\Monolog\\": "" },
  44. "exclude-from-classmap": [
  45. "/Tests/"
  46. ]
  47. },
  48. "minimum-stability": "dev"
  49. }