forked from nbobtc/bitcoind-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.16 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": "nbobtc/bitcoind-php",
"homepage": "https://github.com/nbobtc/bitcoind-php",
"type": "library",
"description": "PHP Wrapper for a bitcoind daemon",
"keywords": ["bitcoin", "bitcoind", "bitcoins"],
"license": "MIT",
"authors": [
{
"name": "Joshua Estes"
}
],
"support": {
"issues": "https://github.com/nbobtc/bitcoind-php/issues",
"source": "https://github.com/nbobtc/bitcoind-php"
},
"autoload": {
"psr-4": { "Nbobtc\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\Nbobtc\\": "tests/" }
},
"extra": {
"branch-alias": {
"1.x-dev": "1.3.x-dev",
"2.x-dev": "2.1.x-dev"
}
},
"require": {
"php": ">=5.4",
"ext-curl": "*",
"ext-json": "*",
"psr/log": "~1.0",
"psr/http-message": "~1.0",
"zendframework/zend-diactoros": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.5.0",
"mockery/mockery": "~0.9.0",
"fzaninotto/faker": "~1.4.0"
},
"config": {
"bin-dir": "bin"
},
"non-feature-branches": ["master"]
}