Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.04 KB

readme.md

File metadata and controls

42 lines (31 loc) · 1.04 KB

Composer Path Plugin

Build Status Code Quality Code Coverage Version License

A Composer plugin which allows any package to define its own install path.

Examples

You can define where a dependency should install itself to:

"extra" : {
    "path" : "tests"
}

You can override the install paths of other dependencies:

"extra" : {
    "paths" : {
        "symfony/*" : "symfony"
    }
}

Installation

❯ composer require "typedphp/composer-path-plugin:*"

Testing

❯ composer create-project "typedphp/composer-path-plugin:*" .
❯ vendor/bin/phpunit