From 3db89836732d31fa23f110e20fdca5d865ab86c2 Mon Sep 17 00:00:00 2001 From: Nabi Date: Sat, 12 Jun 2021 04:51:32 +0430 Subject: [PATCH] Feat #80, Implementation PHP source code Signed-off-by: Nabi --- .gitignore | 3 +++ php/README.md | 27 +++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 php/README.md diff --git a/.gitignore b/.gitignore index 9f11b75..0f5d8aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ .idea/ +/php/composer.json +/php/composer.lock +/php/vendor diff --git a/php/README.md b/php/README.md new file mode 100644 index 0000000..29e993e --- /dev/null +++ b/php/README.md @@ -0,0 +1,27 @@ +# Coinex API PHP +Coinex digital coin exchange API for PHP + +## Install +```shell +composer require NabiKAZ/Coinex-API-PHP dev-main +``` + +## Provide examples +```shell +cp vendor/nabikaz/coinex-api-php/examples.php ./ +``` + +## Config examples +Set `access_id` and `secret_key` in the examples file. +```php +$access_id = ''; +$secret_key = ''; +``` + +## Run examples +```sehll +php examples.php +``` + +## Documentation on how to use +See all source code and documentation in [this link](https://github.com/NabiKAZ/Coinex-API-PHP/blob/main/README.md).