使用v1分支安装googleapiphp客户端



我需要使用适用于PHP的Google API客户端库。我在githuib上发现了仓库

https://github.com/googleapis/google-api-php-client/tree/master

根据存储库文档,如果你想通过composer安装它,你需要运行这个命令。

composer require google/apiclient:"^2.7"

他们还澄清了如果您使用的是PHP 5.2或5.3,则有必要使用v1分支

因为我的服务器在生产中使用php 5.3我需要这个选项,但我不知道下载该分支的eqivalent composer命令是什么。

你能帮我吗?非常感谢!

composer require google/apiclient:"^2.7"需要v2分支的任何标记版本,至少v2.7。

composer require google/apiclient:"^1.0"需要v1分支的任何标记版本

相关内容

  • 没有找到相关文章

最新更新