iprit / botan-php
PHP SDK for Botan.io
Installs: 200
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/iprit/botan-php
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-10-15 15:36:42 UTC
README
Installation
To get started, get Composer.
Run:
$ php composer.phar require iprit/botan-php:*
or add
"iprit/botan-php": "*"
to the require
section of your composer.json
file.
Usage
Create Yandex.AppMetrica api token and insert into $token variable.
private $token = 'token'; public function _incomingMessage($message_json) { $messageObj = json_decode($message_json, true); $messageData = $messageObj['message']; $botan = new IPRIT\BotanSDK\Botan($this->token); $botan->track($messageData, 'Start'); }