aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
blob: 5e93f53e1abdb1b87e6d17b9bf493bea970a5f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "name": "grpc/grpc",
  "type": "library",
  "description": "gRPC library for PHP",
  "keywords": ["rpc"],
  "homepage": "http://grpc.io",
  "license": "Apache-2.0",
  "require": {
    "php": ">=5.5.0"
  },
  "require-dev": {
    "google/auth": "v0.9"
  },
  "suggest": {
    "ext-protobuf": "For better performance, install the protobuf C extension.",
    "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  },
  "autoload": {
    "psr-4": {
      "Grpc\\": "src/php/lib/Grpc/"
    }
  }
}