Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/evokelektrique/bonbast-php

Bonbast price list in PHP
https://github.com/evokelektrique/bonbast-php

Last synced: 10 days ago
JSON representation

Bonbast price list in PHP

Awesome Lists containing this project

README

        

# Bonbast PHP

Simple and easy to use package to retrieve the latest updated currency prices from the Bonbast website.

# Install

Using composer `composer require evokelektrique/bonbast`

# Usage

```php
use Bonbast\Bonbast;

$bonbast = new Bonbast();
$result = $bonbast->get_formatted_price("usd"); // usd, eur ...

var_dump($result);
// array(2) {
// ["sell"]=>
// string(5) "32730"
// ["buy"]=>
// string(5) "32630"
// }
```