forked from mishmash-io/mishmash-io-client-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.12 KB
/
composer.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "mishmash-io/mishmash-rpc-php",
"description": "mishmash.io gRPC client services",
"type": "library",
"keywords": ["database", "mishmash", "io", "mishmash.io", "grpc", "client"],
"homepage": "https://mishmash.io",
"readme": "README.md",
"license": "Apache-2.0",
"support": {
"email": "[email protected]",
"docs": "https://mishmash.io",
"source": "https://github.com/mishmash-io"
},
"require": {
"grpc/grpc": "^v1.27.0",
"google/protobuf": "^v3.11.4"
},
"autoload": {
"psr-4": {
"": ["mishmash-rpc-php/src", "mishmash-rpc-php/gen-src"]
}
},
"scripts": {
"pre-install-cmd": [
"protoc --proto_path=protobuf --php_out=mishmash-rpc-php/gen-src --grpc_out=mishmash-rpc-php/gen-src protobuf/mishmash_rpc.proto"
]
},
"archive": {
"exclude": [
"/*",
".gitignore",
".npmignore",
"!/composer.json",
"!/mishmash-rpc-php",
"!/LICENSE.txt",
"!/README.md",
"!/VERSION.txt"
]
}
}