vvr02
vvr02

Reputation: 611

Forked repository to project

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

Answers (1)

Nafeez Abrar
Nafeez Abrar

Reputation: 1075

Add this to your composer.json

"repositories": [
    {
        "type": "vcs",
        "url":  "[email protected]:vikram0460/Bouncy.git"
    }
]

Upvotes: 1

Related Questions