forked from NanQi/ethereum-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.15 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
42
43
44
45
46
47
{
"name": "hanicc/ethereum-php",
"type": "library",
"description": "ethereum eth web3 keysotre bip44 infura etherscan proxy api",
"keywords": [
"php",
"ethereum",
"web3",
"keysotre",
"bip44",
"infura",
"etherscan"
],
"license": "MIT",
"require": {
"php": ">=7.2",
"ext-gmp": "*",
"ext-openssl": "*",
"ext-json": "*",
"ext-bcmath": "*",
"sop/asn1": "^3.3",
"sop/crypto-encoding": "^0.2.0",
"sop/crypto-types": "^0.2.1",
"kornrunner/keccak": "^1.0",
"phpseclib/phpseclib": "~2.0.11",
"simplito/elliptic-php": "^1.0",
"web3p/ethereum-tx": "^0.3.4",
"furqansiddiqui/bip39-mnemonic-php": "^0.1.2",
"guzzlehttp/guzzle": "~6.0",
"nanqi/minter-php-bip-44": "^1.0",
"league/event": "^2.2"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.5.4"
},
"autoload": {
"psr-4": {
"Ethereum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}