Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Composer VCS Different Directory Name

When using Composer to load a package from a VCS repository, is there a way to specify which folder to install the contents in to (similar to git clone <directory>)?

For example the repo is:

https://github.com/organization/plugin_name.git

And thus composer file reads:

"repositories": [
    {
    "type": "vcs",
          "url": "https://github.com/organization/plugin_name.git"
}]

"require": {
"organization/plugin_name": "dev-master",
}

Whereas the directory I want the contents to be is not "plugin_name" but something like "organization_plugin-title".

I have several repos (custom WP plugins) that have one name, but a different folder name within my WordPress MU setup, and I'd really like to not have to enable each one manually within the admin after updating my composer file.

like image 684
timmyg Avatar asked May 27 '26 07:05

timmyg


1 Answers

Naturally answered my own question once I posted...

In the repo's composer.json file, the "name" field should be what you want the directory to be called when installed. I erroneously thought it had to be the name of the repo.

Be sure to then edit the local install's composer.json file so under the "required" section it is the same name as seen in the repo's composer.json file

like image 100
timmyg Avatar answered May 30 '26 03:05

timmyg



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!