Skip to content

Commit

Permalink
minor #19113 [MonologBridge] move HttpKernel component to require sec…
Browse files Browse the repository at this point in the history
…tion (xabbuh)

This PR was merged into the 2.7 branch.

Discussion
----------

[MonologBridge] move HttpKernel component to require section

| Q             | A
| ------------- | ---
| Branch?       | 2.7
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #19110
| License       | MIT
| Doc PR        |

Nearly every class from the bridge has (directly or indirectly) a dependency on a class from the HttpKernel component. Thus, it for me doesn't make sense to treat it as an optional dependency.

Commits
-------

138d0cb move HttpKernel component to require section
  • Loading branch information
fabpot committed Jun 20, 2016
2 parents 9df08fa + 138d0cb commit 9c8a3e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Bridge/Monolog/composer.json
Expand Up @@ -17,10 +17,10 @@
],
"require": {
"php": ">=5.3.9",
"monolog/monolog": "~1.11"
"monolog/monolog": "~1.11",
"symfony/http-kernel": "~2.4"
},
"require-dev": {
"symfony/http-kernel": "~2.4",
"symfony/console": "~2.4",
"symfony/event-dispatcher": "~2.2"
},
Expand Down

0 comments on commit 9c8a3e9

Please sign in to comment.