-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
37 lines (37 loc) · 964 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
35
36
37
{
"name": "ufado/tron-php",
"description": "Support TRON's TRX and TRC20, which include functions such as address creation, balance query, transaction transfer, query the latest blockchain, query information based on the blockchain, and query information based on the transaction hash",
"keywords": [
"php",
"tron",
"trx",
"trc20"
],
"type": "library",
"homepage": "https://github.com/ufado/tron-php",
"license": "MIT",
"authors": [
{
"name": "ufado",
"email": "ufiles@proton.me"
}
],
"require": {
"ufado/tron-api": "^1.1",
"ionux/phactor": "1.0.8",
"kornrunner/keccak": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^7.5"
},
"autoload": {
"psr-4": {
"Tron\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}