-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
34 lines (34 loc) · 877 Bytes
/
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
{
"name": "maxdw/tron-php-wallet-api",
"description": "PHP API implementation of the TRON API",
"type": "library",
"require": {
"grpc/grpc": "^1.10"
},
"require-dev": {
},
"version": "0.6",
"license": "GNU Lesser General Public License v3.0",
"authors": [
{
"name": "Max van Holten",
"email": "[email protected]"
}
],
"suggest": {
"google/protobuf": "^3.5",
"ext-protobuf-3.5.1.1": "PECL equivalent of the google/protobuf requirement",
"ext-grpc-1.10.1": "PECL extension that is required in combination with grpc/grpc"
},
"autoload": {
"psr-4": {
"Protocol\\": "src/Protocol",
"GPBMetadata\\": "src/GPBMetadata"
}
},
"autoload-dev": {
"psr-4": {
"Tron\\": "tests/"
}
}
}