forked from Bit-Wasp/bitcoin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.04 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": "mdance/bitcoin-php",
"description": "PHP Bitcoin library with functions for transactions, signatures, serialization, Random/Deterministic ECDSA keys, blocks, RPC bindings",
"type": "library",
"homepage": "https://github.com/mdance/bitcoin-php",
"licence": "MIT",
"authors": [
{
"name": "Michael Dance"
}
],
"autoload": {
"psr-4": {
"CryptoCurrency\\Bitcoin\\": "src/Bitcoin/",
"CryptoCurrency\\Bitcoin\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"ext-gmp": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-mcrypt": "*",
"mdanter/ecc": "dev-master",
"pleonasm/merkle-tree": "*",
"fguillot/json-rpc": "0.0.1",
"rych/hash_pbkdf2-compat": "~1.0",
"rgooding/protobuf-php": "*",
"bitwasp/buffertools": "0.0.2"
},
"require-dev": {
"phpunit/phpunit": "~4.3.1",
"squizlabs/php_codesniffer": ">=1.4.6",
"satooshi/php-coveralls": "~0.6.1",
"symfony/yaml": "~2.6"
},
"config": {
"bin-dir": "bin"
}
}