forked from Fenguoz/tron-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.01 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.01 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": "fenguoz/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/Fenguoz/tron-php",
"license": "MIT",
"authors": [
{
"name": "Fenguoz",
"email": "243944672@qq.com"
}
],
"require": {
"php": ">=8.0",
"fenguoz/web3.php": "^1.0",
"fenguoz/tron-api": "~1.1",
"ionux/phactor": "1.0.8",
"kornrunner/keccak": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~7.5 || ~9.0"
},
"autoload": {
"psr-4": {
"Tron\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}