Skip to content

Commit

Permalink
bug #34381 [WebProfilerBundle] Require symfony/twig-bundle (fancyweb)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
fabpot committed Nov 15, 2019
2 parents 8a68d2d + 78dad79 commit 297219b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Bundle/WebProfilerBundle/composer.json
Expand Up @@ -20,7 +20,7 @@
"symfony/http-kernel": "~3.4.25|^4.2.6",
"symfony/polyfill-php70": "~1.0",
"symfony/routing": "~2.8|~3.0|~4.0",
"symfony/twig-bridge": "~2.8|~3.0|~4.0",
"symfony/twig-bundle": "~2.8|~3.0|~4.0",
"symfony/var-dumper": "~3.3|~4.0",
"twig/twig": "~1.34|~2.4"
},
Expand Down

0 comments on commit 297219b

Please sign in to comment.