-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 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
42
{
"name": "bitwasp/trezor-client",
"homepage": "https://github.com/bit-wasp/trezor-client",
"type": "library",
"description": "PHP Wrapper for a bitcoind daemon",
"keywords": ["bitcoin", "trezor", "hardware wallet"],
"license": "MIT",
"authors": [
{
"name": "Thomas Kerin"
}
],
"autoload": {
"psr-4": {
"BitWasp\\Trezor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitWasp\\Test\\Trezor\\": "test/unit",
"BitWasp\\Test\\Trezor\\Device\\": "test/device"
}
},
"require": {
"php": ">=7.0",
"ext-json": "*",
"google/protobuf": "^3.5",
"guzzlehttp/guzzle": "~6.0",
"justinrainbow/json-schema": "^5.2",
"protobuf-php/protobuf": "^0.1.3",
"protobuf-php/protobuf-plugin": "^0.1.3",
"bitwasp/trezor-protobuf": "^1.0",
"infection/infection": "^0.8.1",
"php-mock/php-mock": "^2.0",
"php-mock/php-mock-phpunit": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer": "~3.0",
"phpstan/phpstan": "^0.9.2"
}
}