forked from Bit-Wasp/bitcoin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.18 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
{
"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": "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": ">=5.6",
"ext-gmp": "*",
"ext-openssl": "*",
"ext-bcmath": "*",
"paragonie/random_compat": "^1.4.0|^2.0.0",
"pleonasm/merkle-tree": "1.0.0",
"composer/semver": "^1.4.0",
"lastguest/murmurhash": "v1.3.0",
"rgooding/protobuf-php": "v0.0.1",
"symfony/http-foundation": "^2.7|^3.0",
"mdanter/ecc": "^0.4.0",
"bitwasp/buffertools": "^0.4.0",
"bitwasp/secp256k1-php": "^0.1.2"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^5.4.0",
"squizlabs/php_codesniffer": "^2.0.0"
}
}