-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
57 lines (53 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "blocktrail/blocktrail-sdk",
"description": "The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API",
"keywords": ["blocktrail", "bitcoin", "sdk", "api", "blockchain", "payment", "bitcoin data", "wallet", "multi-signature", "transaction"],
"authors": [
{
"name": "Ruben de Vries",
"email": "[email protected]"
},
{
"name": "Oisin Akiboye Conolly",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Blocktrail\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blocktrail\\SDK\\Tests\\": "tests/"
}
},
"license": "MIT",
"require": {
"php-64bit": ">=5.6.0",
"ext-intl": "*",
"ext-gmp": "*",
"ext-bcmath": "*",
"ext-gd": "*",
"ext-dom": "*",
"ext-curl": "*",
"bitwasp/bitcoin": "v0.0.34.1",
"btccom/justencrypt": "v0.2.0",
"btccom/cashaddress": "v0.0.3",
"mdanter/ecc": "v0.4.*",
"guzzlehttp/guzzle": "6.*",
"99designs/http-signatures-guzzlehttp": "2.0.*",
"rych/hash_pbkdf2-compat": "~1.0",
"ramsey/array_column": "~1.1",
"dompdf/dompdf" : "0.6.*",
"endroid/qrcode": "1.5.*",
"blocktrail/cryptojs-aes-php": "0.1.*",
"spomky-labs/php-aes-gcm": "v1.2.0"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"mockery/mockery": "1.0.*",
"squizlabs/php_codesniffer": "2.*",
"php-coveralls/php-coveralls": "^1.0"
}
}