Using a Local Git Repository as a package

Cloned a GitHub repository to make some changes? Want to use that as a package without having to upload it to GitHub, here’s how…

Add the following to composer:

"repositories": [
{
"type": "vcs",
"url": "/home/packages/path-to-local-repository"
}
],
"require": {
"Package/Name": "dev-develop
}

This will pull in the develop branch when you do a composer update.

Photo by Steve Snodgrass

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.