forked from Bit-Wasp/bitcoin-php
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
46 lines (46 loc) · 1.32 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
{
"name": "protonlabs/bitcoin",
"description": "PHP Bitcoin library with functions for transactions, signatures, serialization, Random/Deterministic ECDSA keys, blocks, RPC bindings",
"type": "library",
"homepage": "https://github.com/bit-wasp/bitcoin-php",
"license": "Unlicense",
"authors": [
{
"name": "Thomas Kerin",
"homepage": "https://thomaskerin.io",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"BitWasp\\Bitcoin\\": "src/"
},
"files": ["src/Script/functions.php"]
},
"autoload-dev": {
"psr-4": {
"BitWasp\\Bitcoin\\Tests\\": "tests/"
}
},
"require": {
"php-64bit": ">=7.0",
"pleonasm/merkle-tree": "~1.0.0",
"composer/semver": "^1.4.0|^3.2.0",
"lastguest/murmurhash": "^v2.0.0",
"shanecurran/phpecc": "^0.0.1",
"protonlabs/buffertools": "^0.5.0",
"bitwasp/bech32": "^0.0.1"
},
"suggest": {
"ext-secp256k1": "The secp256k1 library for fast and safe elliptic curve operations",
"ext-bitcoinconsensus": "The bitcoinconsensus library for safest possible script verification"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^8.0.0",
"squizlabs/php_codesniffer": "^3.0.0",
"nbobtc/bitcoind-php": "v2.0.2",
"bitwasp/secp256k1-php": "^v0.2.0",
"bitwasp/bitcoinconsensus": "v3.0.0"
}
}