forked from Block-Chen/blocksdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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": "block-chen/blocksdk-php",
"description": "Pure (no dependencies) implementation of blocksdk",
"keywords": ["blocksdk","blockchen","sdk","bitcoin","dash","monero","litecoin","ethereum","bitcoincash"],
"type": "library",
"license":"Apache-2.0",
"authors": [
{
"name": "BlockChain SDK Service",
"homepage": "https://blocksdk.com"
}
],
"support": {
"issues": "https://github.com/Block-Chen/blocksdk-php/issues"
},
"homepage": "https://github.com/Block-Chen/blocksdk-php",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"BlockSDK\\": "src/"
},
"files": ["src/blocksdk.php"]
},
"require": {
"php": ">=5.5",
"ext-json": "*"
},
"require-dev": {
"ext-openssl": "*",
"phpunit/phpunit": "^5.4.0",
"squizlabs/php_codesniffer": "^2.0.0"
},
"suggest": {
"ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
"ext-curl": "To send requests using cURL"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}