dev-develop
dev-developBestoon php client
MIT
The Requires
- php >=5.6
- guzzlehttp/guzzle ^6.2
by Alireza Josheghani
Bestoon php client
A simple PHP client for Bestoon Project, (*1)
you can install client with composer, (*2)
composer require bestoon/client:'dev-develop'
You should set your API token key first with instance of client, (*3)
use Bestoon\Client; $client = new Client([ 'token' => 'YOUR-TOKEN' ]);
You can manage your stats with generalStat method, (*4)
$stats = $client->generalStat(); var_dump($stats);
Set your income with amount and text in arguments, (*5)
$client->setIncome('1000000','Test');
Set your expense with amount and text in arguments, (*6)
$client->setExpense('1000000','Test');
The MIT License (MIT). Please see License File for more information., (*7)
Bestoon php client
MIT