kunstmaan / live-reload-bundle
The KunstmaanLiveReloadBundle injects the livereload script from grunt-contrib-watch into your html page.
Package info
github.com/Kunstmaan/KunstmaanLiveReloadBundle
Type:symfony-bundle
pkg:composer/kunstmaan/live-reload-bundle
Requires
- php: >=5.4.0
- guzzle/guzzle: ~3.9
- symfony/framework-bundle: ~2.3
This package is auto-updated.
Last update: 2026-05-29 00:59:21 UTC
README
The KunstmaanLiveReloadBundle makes your life easier by injecting the livereload script snippet from the grunt-contrib-watch plugin into your html in the dev environment. Please refer to the documentation from grunt-contrib-watch to see how to configure livereload then use this bundle to automaticly inject the livereload snippet into your html in the dev environment.
More information about our bundles: http://bundles.kunstmaan.be.
Installation?
composer.json
"require": { "kunstmaan/live-reload-bundle": "1.0.*" },
AppKernel.php:
public function registerBundles() { $bundles = array( // ... new Kunstmaan\LiveReloadBundle\KunstmaanLiveReloadBundle(), // ... );
Configure your Gruntfile to watch certain files using grunt-contrib-watch and don't forget to set the livereload option to true.
Configuration
There are certain configuration options available for this bundle
kunstmaan_live_reload: enabled: true host: localhost port: 35729
By default the default options from grunt-contrib-watch are used.