atereshchuk / bestchange-api
A simple package for working with the pseudo API of the bestchage.ru
dev-master
2024-06-09 22:01 UTC
Requires
- php: ^7.4|^8.0
- ext-zip: ^1.15
- guzzlehttp/guzzle: ^6.0|^7.0
This package is auto-updated.
Last update: 2025-03-09 23:41:45 UTC
README
A simple package for working with the pseudo API of the bestchage.ru
Features
- Save memory by using generators
Requirements
- PHP 7.4 or above
- ZIP extension
Installation
composer require korkoshko/bestchange-api
Usage
Initial
$bestChange = new BestChange(); $bestChange->setArchivePath(__DIR__); // If param is not set, a tmp directory is used $bestChange->download(); // Downloading archive with data
Get base info of API
foreach($bestChange->getInfo() as $info) { // The generator returns (https://www.php.net/manual/ru/language.generators.php) var_dump($info); } // Or using sugar method var_dump( $bestChange->getArray(InfoMethod::class); );
Get exchangers
foreach ($bestChange->getExchangers() as $exchanger) { var_dump($exchanger); }