This simple tools allows you to run npm install
and/or bower install
each time you run composer install / update.
Add this lines to your composer.json file (only works with root file) :
{
"require": {
"yohang/dependency-tools": "1.0.*"
},
"scripts": {
"post-install-cmd": [
"Yohang\\DependencyTools::installDeps"
],
"post-update-cmd": [
"Yohang\\DependencyTools::installDeps"
]
},
"extra": {
"dependency-tools": {
"npm": true,
"bower": true
}
}
}
And that's all, your NPM and Bower dependencies will be installed just after your Composer dependencies.