karser/custom-installer

This installer for composer packages allows you to specify custom install path per package in Symfony2

Installs: 179

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:composer-installer

dev-master 2015-03-14 14:57 UTC

This package is auto-updated.

Last update: 2024-03-20 06:02:37 UTC


README

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"]
        }
    }