Skip to content

Commit e525467

Browse files
ACMP-1263: Update Monolog (#41)
1 parent 6f63cb3 commit e525467

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

composer.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,33 @@
22
"name": "magento/magento-cloud-patches",
33
"description": "Provides critical fixes for Magento 2 Enterprise Edition",
44
"type": "magento2-component",
5-
"version": "1.0.12",
5+
"version": "1.0.13",
66
"license": "OSL-3.0",
7+
"repositories": {
8+
"repo.magento.com": {
9+
"type": "composer",
10+
"url": "https://repo.magento.com/"
11+
}
12+
},
713
"require": {
814
"php": "^7.0",
915
"ext-json": "*",
1016
"composer/composer": "@stable",
11-
"composer/semver": "^1.5||^2.0||^3.0",
17+
"composer/semver": "@stable",
1218
"symfony/config": "^3.3||^4.4||^5.1",
1319
"symfony/console": "^2.6||^4.0||^5.1",
1420
"symfony/dependency-injection": "^3.3||^4.3||^5.1",
1521
"symfony/process": "^2.1||^4.1||^5.1",
1622
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.1",
1723
"symfony/yaml": "^3.3||^4.0||^5.1",
18-
"monolog/monolog": "^1.16",
24+
"monolog/monolog": "^1.25||^2.3",
1925
"magento/quality-patches": "^1.1.0"
2026
},
2127
"require-dev": {
2228
"codeception/codeception": "^2.5.3",
2329
"consolidation/robo": "^1.2",
2430
"phpmd/phpmd": "@stable",
25-
"phpunit/phpunit": "^6.2",
31+
"phpunit/phpunit": "^7.2",
2632
"squizlabs/php_codesniffer": "^3.0"
2733
},
2834
"bin": [

src/App/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function __construct(
5252
/**
5353
* @inheritDoc
5454
*/
55-
public function info($message, array $context = [])
55+
public function info($message, array $context = []): void
5656
{
5757
$message = strip_tags($message);
5858

0 commit comments

Comments
 (0)