composer.json 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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": ">=8.1",
  17. "psr/log": "^2.0 || ^3.0"
  18. },
  19. "require-dev": {
  20. "ext-json": "*",
  21. "aws/aws-sdk-php": "^3.0",
  22. "doctrine/couchdb": "~1.0@dev",
  23. "elasticsearch/elasticsearch": "^7 || ^8",
  24. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  25. "guzzlehttp/guzzle": "^7.4.5",
  26. "guzzlehttp/psr7": "^2.2",
  27. "mongodb/mongodb": "^1.8",
  28. "php-amqplib/php-amqplib": "~2.4 || ^3",
  29. "phpstan/phpstan": "^1.9",
  30. "phpstan/phpstan-deprecation-rules": "^1.0",
  31. "phpstan/phpstan-strict-rules": "^1.4",
  32. "phpunit/phpunit": "^10.5.17",
  33. "predis/predis": "^1.1 || ^2",
  34. "ruflin/elastica": "^7",
  35. "symfony/mailer": "^5.4 || ^6",
  36. "symfony/mime": "^5.4 || ^6"
  37. },
  38. "suggest": {
  39. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  40. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  41. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  42. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  43. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  44. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  45. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  46. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  47. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  48. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  49. "ext-mbstring": "Allow to work properly with unicode symbols",
  50. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  51. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  52. "ext-openssl": "Required to send log messages using SSL"
  53. },
  54. "autoload": {
  55. "psr-4": {"Monolog\\": "src/Monolog"}
  56. },
  57. "autoload-dev": {
  58. "psr-4": {"Monolog\\": "tests/Monolog"}
  59. },
  60. "provide": {
  61. "psr/log-implementation": "3.0.0"
  62. },
  63. "extra": {
  64. "branch-alias": {
  65. "dev-main": "3.x-dev"
  66. }
  67. },
  68. "scripts": {
  69. "test": "@php vendor/bin/phpunit",
  70. "phpstan": "@php vendor/bin/phpstan analyse"
  71. },
  72. "config": {
  73. "lock": false,
  74. "sort-packages": true,
  75. "platform-check": false
  76. }
  77. }