yohang/dependency-tools

A simple Composer script to install NPM and/or Bower dependencies

1.1.1 2013-12-20 07:50 UTC

This package is auto-updated.

Last update: 2024-02-21 18:11:33 UTC


README

This simple tools allows you to run npm install and/or bower install each time you run composer install / update.

Usage

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.