sungazer/composer-repository

Handy tool to manage composer repositories

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

Type:composer-plugin

dev-master 2020-10-25 14:37 UTC

This package is auto-updated.

Last update: 2024-03-25 21:55:24 UTC


README

Easily add and remove local repositories to composer.json. This can be useful when working on a library and wanting to quickly test it in a project. As of now, only vcs type linking with a local (i.e. on the filesystem) package is supported.

Install

composer global require sungazer/composer-repository

How to use

Add a repository

From your project's directory, run

composer repository:add <path to  your repository>

And your composer.json will be updated with this link.

Remove a link

From your project's directory, run

composer repository:remove <package name>

And your composer.json will be updated. If a partial name is provided, the command looks for matches and will ask you to pick one.

Common options

  • -g: Work on the global composer.json instance instead of the one in the current project.