forked from Bit-Wasp/bitcoin-lib-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·31 lines (30 loc) · 870 Bytes
/
Copy pathcomposer.json
File metadata and controls
executable file
·31 lines (30 loc) · 870 Bytes
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
{
"name": "bitwasp/bitcoin-lib",
"description": "Implementation of raw transactions in bitcoin, HD wallets, Electrum wallets, and other fun stuff.",
"keywords": ["bitcoin", "php", "bip32", "electrum", "ecc", "transactions", "HD wallet","btc", "cryptocurrency"],
"license": "Unlicense",
"authors": [
{
"name": "Thomas Kerin",
"email": "thomas.kerin@gmail.com"
}
],
"autoload": {
"psr-4": {
"BitWasp\\BitcoinLib\\": "src/"
}
},
"require": {
"mdanter/ecc": "0.2.0",
"php": ">=5.3.3",
"ext-gmp": "*",
"ext-mcrypt": "*"
},
"suggest": {
"ext-intl": "Required for BIP39 Mnemonic Seeds with UTF-8 passphrases"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"squizlabs/php_codesniffer": "~1.5"
}
}