1
0
Fork 0

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.*)
pull/1210/head
Peter Bowyer 2012-10-15 13:12:30 +02:00
parent 5dd5332623
commit 03c5d9c75b
1 changed files with 2 additions and 2 deletions

View File

@ -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