composer.json 3.2 KB

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