Events
Leveraging the PSR-14 Event Dispatcher within the bundle provides you an opportunity to fine-tune the manifest creation process by hooking into events dispatched before and after the manifest compilation. Below, you'll find how you can listen to these events and implement custom logic accordingly.
Events are:
SpomkyLabs\PwaBundle\Event\PreManifestCompileEvent
SpomkyLabs\PwaBundle\Event\PostManifestCompileEvent
Here's a basic structure for listening to both events:
src/EventListener\MyListener.php
Last updated