php

composer镜像

日期:2017-02-24 阅读:1239

dmandwp系统 - wordpress系统和DM系统区块建站>>

composer镜像

https://pkg.phpcomposer.com/ 

http://jingyan.baidu.com/article/1612d500aa8e94e20e1eeeb3.html

windows下composer安装 > 

 

给composer加镜像有两种方法:

具体可看 https://pkg.phpcomposer.com/

一种是全局的方法:

composer config -g repositories.packagist composer  https://packagist.phpcomposer.com

(注意,是https不是http) 

通过 composer config -l -g 命令可以列出 composer 的全局配置信息

 

在c:/users/administrator/appdata/roaming/composer下的config.json


{
    "config": {},
    "repositories": {
        "packagist": {
            "type": "composer",
            "url": "https://packagist.phpcomposer.com"
        }
        

    }
}

 

-------------

一个是给当前项目配置镜像。

以 laravel 项目的 composer.json 配置文件为例

为了避免安装包的时候都要执行两次查询,切记要添加禁用 packagist 的设置

{
 "repositories": [
        {"type": "composer", "url": "https://pkg.phpcomposer.com/repo/packagist/"},
        {"packagist": false}
    ]
}

 

 

----


http://www.phpcomposer.com/

http://docs.phpcomposer.com/01-basic-usage.html

 

 

<<点击返回