Reputation: 611
This is my first experience of creating a fork repository, updated few things in the repository now I want to download this as package using composer to my project in order to see the broken things to fix.
I want to download using composer something similar to this
{
"require": {
"fadion/bouncy": "~1.0"
}
}
https://github.com/vikram0460/Bouncy
Upvotes: -2
Views: 39
Reputation: 1075
Add this to your composer.json
"repositories": [
{
"type": "vcs",
"url": "[email protected]:vikram0460/Bouncy.git"
}
]
Upvotes: 1