1.安裝composerphp
2.cmd命令行中輸入:composer global require "fxp/composer-asset-plugin:1.3.1"html
出錯了:stream_is_local():Unable to find the wrapper "hhtps" - did you forget to enable it when you configured PHP?json
查找資料,大多數是說因爲php.ini 中的open_ssl 沒有開啓,可是個人已經開啓了,而且在phpinfo()中也能看到open_ssl開啓,對比別人的錯誤「https」和個人錯誤"hhtps"仍是不同的,分析必定是設置某個路徑的時候把https 寫成了hhtps,記憶中只有對composer的鏡像路徑進行過修改。app
3.在http://www.cnblogs.com/mr-amazing/p/6085890.html 中找到修改composer [home]目錄配置文件config.json 的方法:composer config -l -g 。composer
4.打開config.json, 裏面的鏡像路徑果真是hhtps開頭,改爲https://packagist.phpcomposer.com 便可, 再執行composer global require "fxp/composer-asset-plugin:1.3.1" ,成功!ui