/CustomInstaller

Custom installer

Primary LanguagePHP

CustomInstaller

This installer for composer packages allows you to specify custom install path per package in Symfony2. Inspired by this discussion.

Installation

Add the code in your composer.json:

{
    "require": {
        "karser/custom-installer": "dev-master"
    }
}

Now tell composer to download the library by running the command:

$ php ./composer.phar update

Usage

    "extra": {
        "installer-paths": {
            "src/": ["karser/*-bundle"]
        }
    }