slikio / php-sdk
PHP Library for SlikIO - Charts for developers
dev-master
2013-09-18 08:45 UTC
Requires
- php: >=5.0.0
- shuber/curl: *
This package is not auto-updated.
Last update: 2025-03-24 17:42:46 UTC
README
This is the SlikIO PHP SDK that allows you to access SlikIO from your PHP app.
Usage
Installation
First, register to SlikIO if you haven't done so already, then get the private API key, and initialize the framework:
require_once 'vendor/autoload.php'; $slikio = new SlikIO('YOUR_PRIVATE_API_KEY');
With Composer:
- Add the
"slikio/php-sdk": "dev-master"
into therequire
section of yourcomposer.json
. - Run
composer install
Pushing data to collections:
To push data to your collection use the sendData
method:
$slikio->sendData(COLLECTION_ID, data);
Example:
$slikio->sendData("col_3890fc01750b17412", array( 'user_id' => '123123', 'email' => 'user@email.com', 'action' => 'planPurchased', 'cost' => 150.0 ));