From 03c5d9c75b582aba51a2a978d4e46019b6a757ef Mon Sep 17 00:00:00 2001 From: Peter Bowyer Date: Mon, 15 Oct 2012 13:12:30 +0200 Subject: [PATCH] Update monlolog to 1.2.* I slavishly followed these instructions when learning how to use Composer, then wondered why Monolog didn't behave per its documentation (`addNotice()` is missing in 1.0.*) --- doc/00-intro.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/00-intro.md b/doc/00-intro.md index caa71c09a..d5f4412bc 100644 --- a/doc/00-intro.md +++ b/doc/00-intro.md @@ -35,12 +35,12 @@ which describes the project's dependencies. { "require": { - "monolog/monolog": "1.0.*" + "monolog/monolog": "1.2.*" } } We are simply stating that our project requires some `monolog/monolog` package, -any version beginning with `1.0`. +any version beginning with `1.2`. ## Installation