Skip to content

Commit 11704a4

Browse files
authored
Allow psr/log 2.0 and 3.0 (#1141)
1 parent b887de2 commit 11704a4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"php-http/message-factory": "^1.0.2",
2626
"php-http/promise": "^1.0",
2727
"psr/http-message-implementation": "^1.0",
28-
"psr/log": "^1.0",
28+
"psr/log": "^1.0|^2.0|^3.0",
2929
"psr/simple-cache": "^1.0"
3030
},
3131
"require-dev": {
@@ -73,4 +73,4 @@
7373
"scripts": {
7474
"test": "vendor/bin/phpunit"
7575
}
76-
}
76+
}

src/Plugin/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"require": {
1717
"php": "^7.3 || ^8.0",
1818
"php-http/promise": "^1.0",
19-
"psr/log": "^1.0",
19+
"psr/log": "^1.0|^2.0|^3.0",
2020
"psr/simple-cache": "^1.0",
2121
"willdurand/geocoder": "^4.0"
2222
},
@@ -43,4 +43,4 @@
4343
"test": "vendor/bin/phpunit",
4444
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
4545
}
46-
}
46+
}

src/Provider/Chain/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
],
1414
"require": {
1515
"php": "^7.3 || ^8.0",
16-
"psr/log": "^1.0",
16+
"psr/log": "^1.0|^2.0|^3.0",
1717
"willdurand/geocoder": "^4.0"
1818
},
1919
"provide": {
@@ -44,4 +44,4 @@
4444
"test": "vendor/bin/phpunit",
4545
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
4646
}
47-
}
47+
}

0 commit comments

Comments
 (0)