-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (39 loc) · 795 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (39 loc) · 795 Bytes
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
{
"name": "reinaldomendes/changelly-json-rpc",
"description": "Changelly Json RPC wrappers API",
"keywords" : [
"Bitcoin",
"Changelly",
"JSONRPC",
"Wrapper-library",
"Wrapper-api"
],
"type": "library",
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"license": "MIT",
"authors": [
{
"name": "Reinaldo Mendes",
"email": "reinaldorock@yahoo.com.br"
}
],
"autoload": {
"psr-4": {
"Rbm\\Changelly\\": "src/Changelly/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0"
},
"config": {
"sort-packages": true
}
}