-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.15 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.15 KB
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
{
"name": "lnpay/php-lnd-grpc",
"description": "PHP LND RPC Implementation",
"require": {
"grpc/grpc": "^1.22.0",
"google/protobuf": "^3.8.0",
"google/common-protos": "^1.1"
},
"autoload": {
"psr-4": {
"Autopilotrpc\\": "Autopilotrpc/",
"Chainrpc\\": "Chainrpc/",
"Devrpc\\": "Devrpc/",
"Invoicesrpc\\": "Invoicesrpc/",
"Lnrpc\\": "Lnrpc/",
"Neutrinorpc\\":"Neutrinorpc/",
"Peersrpc\\":"Peersrpc/",
"Routerrpc\\": "Routerrpc/",
"Signrpc\\": "Signrpc/",
"Verrpc\\": "Verrpc/",
"Walletrpc\\": "Walletrpc/",
"Watchtowerrpc\\":"Watchtowerrpc/",
"Wtclientrpc\\": "Wtclientrpc/",
"GPBMetadata\\Google\\": "grpc/third_party/protobuf/php/src/GPBMetadata/Google/Protobuf/",
"GPBMetadata\\": "GPBMetadata/"
}
},
"scripts": {
"post-install-cmd": [
"git submodule update --init"
]
},
"authors": [
{
"name": "Tim K",
"email": "bootstrapbandit7@gmail.com"
}
]
}