Skip to content

Commit

Permalink
merged branch michal-pipa/composer-fix (PR #3986)
Browse files Browse the repository at this point in the history
Commits
-------

a514072 Added Monolog to composer.json as dev dependency

Discussion
----------

Added Monolog to composer.json as dev dependency

Bug fix: yes
Feature addition: no
Backwards compatibility break: no
Symfony2 tests pass: [![Build Status](https://secure.travis-ci.org/michal-pipa/symfony.png?branch=composer-fix)](http://travis-ci.org/michal-pipa/symfony)
Fixes the following tickets: -
Todo: -

Monolog was missing in dev composer dependences. It was present in `vendors.php`: https://github.com/symfony/symfony/blob/35e6c8ed0fb1ee329c26868c87e0fb5c54eef06a/vendors.php

Without this code coverage report generation fails with error message: `Fatal error: Class 'Monolog\Handler\ChromePHPHandler' not found`.
  • Loading branch information
fabpot committed Apr 19, 2012
2 parents cc0e293 + a514072 commit 0cd6385
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -56,7 +56,8 @@
"doctrine/dbal": "2.2.*",
"doctrine/orm": "2.2.*",
"doctrine/data-fixtures": "1.0.*",
"propel/propel1": "dev-master"
"propel/propel1": "dev-master",
"monolog/monolog": "dev-master"
},
"autoload": {
"psr-0": {
Expand Down

0 comments on commit 0cd6385

Please sign in to comment.