-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 835 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 835 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
{
"name": "webdollar/webdollar-client-php",
"license": "ISC",
"type": "library",
"description": "JSON-RPC 2.0 client for WebDollar",
"keywords": ["WebDollar", "Client", "Blockchain", "http", "json", "json-rpc", "jsonrpc", "rpc"],
"authors": [
{
"name": "Razvan Ceana",
"email": "razvan@ceana.ro"
}
],
"require": {
"php": ">=7.1",
"graze/guzzle-jsonrpc": "^3.2",
"nesbot/carbon": "^2.10",
"doctrine/collections": "^1.5",
"symfony/finder": "^4.2"
},
"autoload": {
"psr-4": {
"WebDollar\\Client\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WebDollar\\Client\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0|^7.0"
}
}