소스 검색

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.*)
Peter Bowyer 13 년 전
부모
커밋
03c5d9c75b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      doc/00-intro.md

+ 2 - 2
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