forked from Fenguoz/tron-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
{
"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": "[email protected]"
}
],
"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/"
}
}
}