LoginSignup
0
1

More than 5 years have passed since last update.

githubのプライベートリポジトリをcomposerで引っ張って来る

Last updated at Posted at 2017-10-21

composer.jsonに以下を追加。

{
    "repositories": [
        {
            "type": "vcs",
            "url": "git@github.com:goodlife-retech/test.git"
        }
    ],
    "require": {
        "goodlife-retech/test": "dev-master"
    }
}

composer updateすれば

RSA key fingerprint is SHA256:*******
Are you sure you want to continue connecting (yes/no)? 

と聞かれるので、yesと答えれば引っ張って来る

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1