解决laravel5.8出现无法使用composer安装验证码扩展包问题
D:\ProgramFiles\phpstudy_pro\WWW\laravel_project>composer require mews/captcha
Using version ^3.0 for mews/captcha
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
The "https://repo.packagist.org/p/illuminate/http.json" file could not be downloaded: failed to open stream: HTTP request failed!
https://packagist.phpcomposer.com could not be fully loaded, package information was loaded from the local cache and may be out of date
1、全局配置(推荐)
所有项目都会使用该镜像地址:
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
取消配置:
composer config -g --unset repos.packagist
如果当前项目无法安装扩展包,则使用以下
2、仅修改当前工程配置
仅修改当前工程配置,仅当前工程可使用该镜像地址:composer config repo.packagist composer https://mirrors.aliyun.com/composer/
取消配置:composer config --unset repos.packagist
文章评论(0)