-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
41 lines (41 loc) · 1.2 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
40
41
{
"name": "fenguoz/bsc-php",
"description": "Support Binance's BNB and BEP20, 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",
"binance",
"bnb",
"bep20"
],
"type": "library",
"homepage": "https://github.com/Fenguoz/bsc-php",
"license": "MIT",
"authors": [
{
"name": "Fenguoz",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ionux/phactor": "1.0.8",
"kornrunner/keccak": "^1.0",
"sop/asn1": "^3.3",
"sop/crypto-encoding": "^0.2.0",
"sop/crypto-types": "^0.2.1",
"phpseclib/phpseclib": "~2.0.11",
"guzzlehttp/guzzle": ">=6.5",
"fenguoz/bip39-mnemonic-php": "~1.2.0",
"fenguoz/minter-php-bip-44": "~1.0",
"ext-gmp": "*",
"ext-openssl": "*",
"ext-json": "*",
"ext-bcmath": "*",
"web3p/ethereum-tx": "^0.4.3"
},
"autoload": {
"psr-4": {
"Binance\\": "src/"
}
}
}