summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-09-22 10:21:01 +0200
committerRemi Collet <remi@remirepo.net>2021-09-22 10:21:01 +0200
commit4f647a74b8253ea7acc896ca4a6b1d0a739ad9d2 (patch)
tree22e19f042862f6ebfd20eab81ce7ec4648448d40 /composer.json
parentafabf3cb47ba63dc69405ce4ba9dfe0915f8b21a (diff)
update to 2.3.4
allow psr/log v2 and v3
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json11
1 files changed, 7 insertions, 4 deletions
diff --git a/composer.json b/composer.json
index 7ed2e3d..5372e48 100644
--- a/composer.json
+++ b/composer.json
@@ -14,7 +14,7 @@
],
"require": {
"php": ">=7.2",
- "psr/log": "^1.0.1"
+ "psr/log": "^1.0.1 || ^2.0 || ^3.0"
},
"require-dev": {
"aws/aws-sdk-php": "^2.4.9 || ^3.0",
@@ -28,7 +28,7 @@
"phpunit/phpunit": "^8.5",
"predis/predis": "^1.1",
"rollbar/rollbar": "^1.3",
- "ruflin/elastica": ">=0.90 <7.0.1",
+ "ruflin/elastica": ">=0.90@dev",
"swiftmailer/swiftmailer": "^5.3|^6.0",
"phpstan/phpstan": "^0.12.91"
},
@@ -44,7 +44,10 @@
"aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
"rollbar/rollbar": "Allow sending log messages to Rollbar",
"php-console/php-console": "Allow sending log messages to Google Chrome",
- "ext-mbstring": "Allow to work properly with unicode symbols"
+ "ext-mbstring": "Allow to work properly with unicode symbols",
+ "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
+ "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
+ "ext-openssl": "Required to send log messages using SSL"
},
"autoload": {
"psr-4": {"Monolog\\": "src/Monolog"}
@@ -53,7 +56,7 @@
"psr-4": {"Monolog\\": "tests/Monolog"}
},
"provide": {
- "psr/log-implementation": "1.0.0"
+ "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
},
"extra": {
"branch-alias": {