We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For those getting this error:
Uncaught AsseticBundle\Exception\InvalidArgumentException: no strategy defined for renderer "Laminas\View\Renderer\PhpRenderer"
put the following into your config:
<?php use Laminas\View\Renderer; use AsseticBundle\View; return [ 'assetic_configuration' => [ 'rendererToStrategy' => [ Renderer\PhpRenderer::class => View\ViewHelperStrategy::class, Renderer\FeedRenderer::class => View\NoneStrategy::class, Renderer\JsonRenderer::class => View\NoneStrategy::class, ], ], ];
The text was updated successfully, but these errors were encountered:
I've forked this module here: https://github.com/fabiang/assetic-module
What we've got so far:
Version 2.5.0 was tested with ZF3 and Laminas. Report any problems back there. Thanks!
Sorry, something went wrong.
@fabiang Thanks for the tip above, saved a ton of time digging in the code.
No branches or pull requests
For those getting this error:
put the following into your config:
The text was updated successfully, but these errors were encountered: