composer.json 2.9 KB

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