Reputation: 117
I use from SonataAdminBundle when installed this bundle by composer show this error:
The service "sonata.block.service.container" has a dependency on a non-existent service "templating".
Upvotes: 3
Views: 1424
Reputation: 414
Make sure twig is installed and available in your configuration:
# app/config/config.yml
framework:
# ...
templating:
engines: ['twig']
Source: Stack Overflow #47656816
Upvotes: 9