-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Allow monolog 3 #53480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow monolog 3 #53480
Conversation
Are you sure about this? The PHP code in #52222 was adjusted for 6.3 while your PR targets 5.4. |
This is a follow up from 720444c.
4e7da1a
to
d7a6593
Compare
You’re right, thanks a lot, PR updated. |
Can you elaborate which problem this change is going to solve? If we merge this PR, we will lose test coverage for Monolog 2. |
This change should allow one to install
That would be unfortunate, and not at all the expected outcome, but that seems to outline an issue in the test coverage workflow. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change should allow one to install
symfony/symfony
with version 3 ofmonolog/monolog
.
No. First of all, don't install symfony/symfony
. Ever. This practice has been discouraged for half a decade now.
Secondly, we're talking about a dependency in require-dev
. Changing the version range here has absolutely zero impact on projects that use symfony/symfony
as a dependency.
That would be unfortunate
Indeed.
but that seems to outline an issue in the test coverage workflow.
Maybe. If you have a better idea how to solve that, I'm all ears. Note that in Symfony 7, the issue is solved because Monolog 3 is the only supported version there.
I am closing for the reasons given by @derrabus. Thank you for understanding. |
This is a follow up from #52222.