composer.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "monolog/monolog",
  3. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4. "keywords": ["log", "logging", "psr-3"],
  5. "homepage": "https://github.com/Seldaek/monolog",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Jordi Boggiano",
  11. "email": "j.boggiano@seld.be",
  12. "homepage": "https://seld.be"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.2",
  17. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  18. },
  19. "require-dev": {
  20. "ext-json": "*",
  21. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  22. "doctrine/couchdb": "~1.0@dev",
  23. "elasticsearch/elasticsearch": "^7 || ^8",
  24. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  25. "guzzlehttp/guzzle": "^7.4",
  26. "guzzlehttp/psr7": "^2.2",
  27. "mongodb/mongodb": "^1.8",
  28. "php-amqplib/php-amqplib": "~2.4 || ^3",
  29. "phpspec/prophecy": "^1.15",
  30. "phpstan/phpstan": "^0.12.91",
  31. "phpunit/phpunit": "^8.5.14",
  32. "predis/predis": "^1.1 || ^2.0",
  33. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  34. "ruflin/elastica": "^7",
  35. "swiftmailer/swiftmailer": "^5.3|^6.0",
  36. "symfony/mailer": "^5.4 || ^6",
  37. "symfony/mime": "^5.4 || ^6"
  38. },
  39. "suggest": {
  40. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  41. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  42. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  43. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  44. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  45. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  46. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  47. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  48. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  49. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  50. "ext-mbstring": "Allow to work properly with unicode symbols",
  51. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  52. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  53. "ext-openssl": "Required to send log messages using SSL"
  54. },
  55. "autoload": {
  56. "psr-4": {"Monolog\\": "src/Monolog"}
  57. },
  58. "autoload-dev": {
  59. "psr-4": {"Monolog\\": "tests/Monolog"}
  60. },
  61. "provide": {
  62. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  63. },
  64. "extra": {
  65. "branch-alias": {
  66. "dev-main": "2.x-dev"
  67. }
  68. },
  69. "scripts": {
  70. "test": "@php vendor/bin/phpunit",
  71. "phpstan": "@php vendor/bin/phpstan analyse"
  72. },
  73. "config": {
  74. "lock": false,
  75. "sort-packages": true,
  76. "platform-check": false,
  77. "allow-plugins": {
  78. "composer/package-versions-deprecated": true
  79. }
  80. }
  81. }