Skip to content

Commit b6d7748

Browse files
committed
accept any psr/log version
Since this library only consumes loggers, but does not implement any loggers, it's safe to accept all three versions of psr/log making the library more compatible with different environments. See also https://www.php-fig.org/blog/2019/10/upgrading-psr-interfaces/
1 parent 16e2c48 commit b6d7748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"require": {
2121
"php": ">=5.4",
22-
"psr/log": "~1.0"
22+
"psr/log": "^1.0 || ^2.0 || ^3.0"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "~8.5",

0 commit comments

Comments
 (0)