aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/composer.json.template
blob: 275b4655ced4f792025ec6a3f9397b71bdf3c1b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%YAML 1.2
--- |
  {
    "name": "grpc/grpc",
    "type": "library",
    "description": "gRPC library for PHP",
    "version": "${settings.php_version.php()}",
    "keywords": ["rpc"],
    "homepage": "http://grpc.io",
    "license": "BSD-3-Clause",
    "repositories": [
      {
        "type": "vcs",
        "url": "https://github.com/stanley-cheung/Protobuf-PHP"
      }
    ],
    "require": {
      "php": ">=5.5.0",
      "datto/protobuf-php": "dev-master",
      "google/auth": "v0.7"
    },
    "autoload": {
      "psr-4": {
        "Grpc\\": "src/php/lib/Grpc/"
      }
    }
  }