-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
49 lines (49 loc) · 1.64 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
{
"name": "sandrokeil/blockchain-wallet-api",
"description": "Zend Framework 2 (ZF2) client library for blockchain wallet api. Configure request, call the service and access the response data via objects.",
"homepage": "https://github.com/sandrokeil/BlockchainWalletApi",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"blockchain",
"bitcoin",
"zf2",
"blockchain wallet api",
"wallet",
"api",
"webservice",
"client",
"payment"
],
"authors": [
{"name": "Sandro Keil", "homepage": "https://github.com/sandrokeil"}
],
"autoload": {
"psr-4": {
"Sake\\BlockchainWalletApi\\": "src/",
"SakeTest\\BlockchainWalletApi\\": "test/"
}
},
"require": {
"php": "~5.3",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-stdlib": "~2.2",
"zendframework/zend-http": "~2.2",
"zendframework/zend-filter": "~2.2",
"sandrokeil/easy-config": "~1.0"
},
"require-dev": {
"zendframework/zend-test": "~2.2",
"zendframework/zend-config": "~2.2",
"zendframework/zend-form": "~2.2",
"zendframework/zend-serializer": "~2.2",
"zendframework/zend-log": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-view": "~2.2",
"sandrokeil/citools": "~1.0"
},
"suggest": {
"zendframework/zend-view": "Zend\\View to use satoshi view helper",
"zendframework/zend-modulemanager": "Zend\\ModuleManager to use default module configuration e.g. services"
}
}