forked from Bit-Wasp/bitcoin-php
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
46 lines (46 loc) · 1.14 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": "bitwasp/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": "Unlicence",
"authors": [
{
"name": "Thomas Kerin",
"homepage": "https://thomaskerin.io",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"BitWasp\\Bitcoin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitWasp\\Bitcoin\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.4.0",
"ext-gmp": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-mcrypt": "*",
"mdanter/ecc": "~0.3",
"pleonasm/merkle-tree": "1.0.0",
"doctrine/cache": "~1.4",
"fguillot/json-rpc": "0.0.1",
"rych/hash_pbkdf2-compat": "~1.0",
"lastguest/murmurhash": "~1.0",
"rgooding/protobuf-php": "~0.0",
"react/react": "~0.4",
"react/socket-client": "~0.4",
"bitwasp/buffertools": "~0.1",
"bitwasp/stratum": "~0.1"
},
"require-dev": {
"bitwasp/testing-php": "~0.0",
"symfony/yaml": "~2.6"
}
}