⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
vendor
/
coingate
/
coingate-php
/
View File Name :
CHANGELOG.md
CoinGate PHP library release notes ============================ v4.1.0 --- * ApiKey is no more mandatory when creating a Client. Useful when you want to perform Public API calls only. * Added possibility for late ``$client->setApiKey('YOUR_API_TOKEN')`` and ``$client->setEnvironment('sandbox')`` assignments. * Added support for Public API calls. - Added support for [Get Exchange Rate](https://developer.coingate.com/docs/get-rate) - Added support for [List Exchange Rates](https://developer.coingate.com/docs/list-rates) - Added support for [Ping](https://developer.coingate.com/docs/ping) - Added support for [IP Addresses](https://developer.coingate.com/docs/ip-addresses) - Added support for [Currencies](https://developer.coingate.com/docs/currencies) - Added support for [Platforms](https://developer.coingate.com/docs/platforms) v4.0.0 ---- * Library now requires PHP 7.3.0 or greater. * Added support for an additional Payment Gateway API calls. - Added support for [Checkout](https://developer.coingate.com/docs/checkout) - Added support for [List Orders](https://developer.coingate.com/docs/list-orders) * Added possibility to extend and/or use custom HttpClient. > ### Breaking Changes * Library was completely refactored from the ground up and resulted into usage changes. - ```\CoinGate\CoinGate::config(...)``` => ```$client = new \CoinGate\Client('YOUR_API_TOKEN')``` - ```\CoinGate\Merchant\Order::create($params)``` => ```$client->order->create($params)``` - ```\CoinGate\Merchant\Order::find(7294)``` => ```$client->order->get(7294)```