no_obu/symlink-dependencies

There is no license information available for the latest version (dev-master) of this package.

Composer symlink package installer

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:composer-plugin

dev-master 2018-10-03 21:02 UTC

This package is auto-updated.

Last update: 2024-09-29 04:14:40 UTC


README

This composer extension allows developper to install a local package with symlink instead of using github repository. This can be usefull for test many app with same dev-bundle update without installing many time a bundle.

HOWTO INSTALL

$ composer global require no_obu/symlink-dependencies

bundle.map.php format

<?php

return [
    'vendor1/packageName1' => '/absolute/path/to/directory/bunde1',
    'vendor2/packageName2' => '/absolute/path/to/directory/bunde2',
    ...
    'vendorN/packageNameN' => '/absolute/path/to/directory/bundeN',
];