Home >Backend Development >PHP Tutorial >为啥使用local package的composer如此慢?

为啥使用local package的composer如此慢?

WBOY
WBOYOriginal
2016-06-06 20:13:381083browse

hi,all
我的composer.json如下:

<code>{

    "repositories": [
    {
        "type":"vcs",
        "url":"/path/webbuild"
    }
],
    "require": {
        "xx/webbuild":"dev-master"
    }
}
</code>

当我使用composer install --prefer-source --profile的来安装依赖,发现非常非常慢,这是为什么呢?

此外,我尝试了:composer install
仍旧很慢~


我发现,可能是以下的下载项导致,但我不确定什么原因:
我使用本地的git仓库,无需connect官方的仓库,为何会有这么多的download呢?

为啥使用local package的composer如此慢?

回复内容:

hi,all
我的composer.json如下:

<code>{

    "repositories": [
    {
        "type":"vcs",
        "url":"/path/webbuild"
    }
],
    "require": {
        "xx/webbuild":"dev-master"
    }
}
</code>

当我使用composer install --prefer-source --profile的来安装依赖,发现非常非常慢,这是为什么呢?

此外,我尝试了:composer install
仍旧很慢~


我发现,可能是以下的下载项导致,但我不确定什么原因:
我使用本地的git仓库,无需connect官方的仓库,为何会有这么多的download呢?

为啥使用local package的composer如此慢?

禁用官方源需要在repositories中显示指定

<code class="json">{
    "repositories": [
        {
            "packagist": false
        }
    ]
}</code>

参考 https://getcomposer.org/doc/05-repositories.md#disabling-packagist

http://packagist.cn/ 中国镜像【全量】

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn