mirror of
https://github.com/Seldaek/monolog.git
synced 2026-04-26 08:05:53 +03:00
[GH-ISSUE #64] update of symfony-standard with master branch dont update monolog to master #18
Labels
No labels
Bug
Documentation
Feature
Needs Work
Support
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/monolog#18
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @oweitman on GitHub (Mar 6, 2012).
Original GitHub issue: https://github.com/Seldaek/monolog/issues/64
i dont know if this was intended, but i tried to update the monolog library in the symfony-standard-package (from master).
monolog version stays at 1.02 maybe because of the requirement in the composer file of symfony/monolog-bridge (master):
monolog/monolog: 1.*
it should be changed to "dev-master"
i create the issue here, because it was not possible to create an issue in symfony / MonologBridge
and seldaek is the same maintainer.
@Seldaek commented on GitHub (Mar 6, 2012):
Well, the bridge relies on Monolog 1.*, but composer allows you to use master anyway by adding this to your app's require:
"monolog/monolog": "dev-master as 1.1.0-dev"for example which makes dev-master look like a 1.1.0-dev, which passes 1.*, and then it'll install fine. Relying on dev-master versions is not recommended though for libraries and such, since they are moving targets you never know if it'll break, but as an app developer if you want to do it anyway you have the option since it only affects you.