forked from rkirkels/nanopool-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 738 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 738 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
{
"name": "rutgerkirkels/nanopool-api-client",
"description": "A PHP client to connect to the NanoPool API",
"homepage": "https://github.com/rutgerkirkels/nanopool-api-client",
"keywords": ["nanopool", "client", "nanopool-ethereum-api"],
"license": "MIT",
"type": "library",
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"authors": [
{
"name": "Rutger Kirkels",
"email": "rutger@kirkels.nl",
"homepage": "https://rutger.kirkels.nl"
}
],
"autoload": {
"psr-4": {
"RutgerKirkels\\NanoPool_API_Client\\": "src/"
}
}
}