-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[WebProfilerBundle] Require symfony/twig-bundle #34381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
It can break Silex. I know, it's not maintained anymore, but that's just an example. |
The |
|
Sorry, my comment is not on the right PR :) It should have been on #34389 |
Thank you @fancyweb. |
This PR was merged into the 3.4 branch. Discussion ---------- [WebProfilerBundle] Require symfony/twig-bundle | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - Starting from a fresh 3.4 I did `composer require symfony/web-profiler-bundle --dev` but it fails on post install cache clear because https://github.com/symfony/symfony/blob/8a68d2d358ae7db406f72711c24d5c8f687cf7b6/src/Symfony/Bundle/WebProfilerBundle/Resources/config/profiler.xml#L13 needs the `twig` service that is declared in the `TwigBundle`. `symfony/twig-bundle` is already a hard depency of the `WebProfilerBundle` on 4.3+ (cf cac37ca). Commits ------- 78dad79 [WebProfilerBundle] Require symfony/twig-bundle
Starting from a fresh 3.4 I did
composer require symfony/web-profiler-bundle --dev
but it fails on post install cache clear becausesymfony/src/Symfony/Bundle/WebProfilerBundle/Resources/config/profiler.xml
Line 13 in 8a68d2d
twig
service that is declared in theTwigBundle
.symfony/twig-bundle
is already a hard depency of theWebProfilerBundle
on 4.3+ (cf cac37ca).