guzzlehttp

Guzzle中文文档

1,安装

laravel版本5.3需要安装,版本5,7不需要安装

(1)如果安装最新版,在项目根目录,执行如下命令

composer require guzzlehttp/guzzle

(2)如果安装指定版本

php composer.phar require guzzlehttp/guzzle:~6.0

或者

编辑项目的composer.json文件,添加Guzzle作为依赖

{
   "require": {
      "guzzlehttp/guzzle": "~6.0"
   }
}

执行 composer update

深化学习-zttp

地址一
地址二

猜你喜欢

转载自blog.csdn.net/network_dream/article/details/88186441