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