- This bundle require NodeJS on your system and added to your %PATH%
1 Add the bundle to your vendor
...Note: still in beta so load from the repository
Add this config below in your composer.json
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Damian972/reload-bundle"
}
],
"require-dev": {
"damian972/reload-bundle": "dev-master"
}
}then run:
composer update2 Register the bundle in config/bundles.php
$bundles = [
...
Damian972\ReloadBundle\ReloadBundle::class => ['dev' => true],
];3 Set the bundle's config in config/packages/dev/reload.yaml (optional)
reload:
server_port: 8080 # default: 80884 Add required npm packages
php bin/console reload:configurethen:
npm update5 You're ready to go
php bin/console reload:watch