hanischit/kraken-api
最新稳定版本:1.1.5
Composer 安装命令:
composer require hanischit/kraken-api
包简介
A API-Client for the crypto market Kraken.com.
README 文档
README
Simple API client to work with kraken.
All calls of the api are implemented: https://www.kraken.com/help/api
Installation & loading
Kraken api is available on Packagist (using semantic versioning), and installation via composer is the recommended way to install Kraken-api. Just add this line to your composer.json file:
"hanischit/kraken-api": "^1.1.5"
or run
composer require hanischit/kraken-api
The API declares the namespace \HanischIt\KrakenApi.
Example
require_once(__DIR__ . '/../vendor/autoload.php'); try { $api = new \HanischIt\KrakenApi\KrakenApi("Your-API-Key", "Your-API-Sign"); $serverTimeResponse = $api->getServerTime(); echo "UnixTime: " . $serverTimeResponse->getUnixTime() . "\n"; echo "rfc1123: " . $serverTimeResponse->getRfc1123(); } catch (Exception $e) { echo $e->getMessage(); }
See examples folder for more examples.
Tests
There is a PHPUnit test script in the test folder.
Security
Please disclose any vulnerabilities found responsibly - report any security problems found to the maintainers privately.
Contributing
Please submit bug reports, suggestions and pull requests to the GitHub issue tracker.
统计信息
- 总下载量: 541
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-07-17