aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/composer.json.template
blob: 48d3b8892e203755e2cec8b6cced333b0f507c70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%YAML 1.2
--- |
  {
    "name": "grpc/grpc",
    "type": "library",
    "description": "gRPC library for PHP",
    "keywords": ["rpc"],
    "homepage": "http://grpc.io",
    "license": "BSD-3-Clause",
    "require": {
      "php": ">=5.5.0",
      "stanley-cheung/protobuf-php": "v0.6"
    },
    "require-dev": {
      "google/auth": "v0.9"
    },
    "autoload": {
      "psr-4": {
        "Grpc\\": "src/php/lib/Grpc/"
      }
    }
  }