1. ホーム
  2. google-cloud-platform

[解決済み] Composerのrequireブランチ名

2022-05-18 10:38:52

質問

例えば、私は要求したいです。

{
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/google/google-api-php-client.git"
    }
  ],

  "require": {
    "google/apiclient": "v1-master"
  }
}

この例では google/apiclient ブランチ上で v1-master . エラーが出ます。

  [UnexpectedValueException]                                                        
  Could not parse version constraint v1-master: Invalid version string "v1-master"

どのように解決するのですか?

すべての開発ブランチ(=タグなし)の前に dev- .

必要なブランチをインストールするために、使用します。

composer require google/apiclient:dev-v1-master

参照 作曲家のドキュメント .