composer引用私有github包

composer.json中定义

{
    "require": {
        "igorsantos07/«my-private-repo»": "dev-master"
    },
    "repositories": [
        {
            "type": "git",
            "url": "https://github.com/igorsantos07/«my-private-repo»"
        }
    ],
    "config": {
        "github-oauth": {
            "github.com": "«my valid token»"
        },
        "http-basic": {
            "github.com": {
                "username": "igorsantos07",
                "password": "«same valid token»"
            }
        }
    }
}

版权声明:
作者:tianya
链接:https://tya.zone/p/102.html
来源:天涯博客
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
海报
composer引用私有github包
composer.json中定义 { "require": { "igorsantos07/«my-private-repo»": "dev-master" }, "repositories": [ { ……
<<上一篇
下一篇>>