2017 © Pedro Peláez
 

library php-lib

A PHP 5.3 library for sending events to the churnbee.com service.

image

churnbee/php-lib

A PHP 5.3 library for sending events to the churnbee.com service.

  • Sunday, November 24, 2013
  • by MiljenkoR
  • Repository
  • 1 Watchers
  • 1 Stars
  • 52 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

ChurnBee php-lib

ChurnBee php API integration library. Visit official page for more information, (*1)

Requirements

This module has no external dependencies., (*2)

Installing with Composer

Define Your Dependencies

We recommend installing this package with Composer. Add the following dependencies to your projects composer.json file:, (*3)


"require": { "churnbee/php-lib": "dev-master" }

Then, on the command line:, (*4)

``` bash curl -s http://getcomposer.org/installer | php php composer.phar install, (*5)


Use the generated `vendor/autoload.php` file to autoload the library classes. ## Installing without Composer ## Place the ChurnBee files in the `include_path` as specified in your `php.ini` file or place it in the same directory as your PHP scripts. Alternatively include all files: ```` require_once("ChurnBee/Library/CBConf.php"); require_once("ChurnBee/Library/ChurnBeeException.php"); require_once("ChurnBee/Library/CurlUtil.php"); require_once("ChurnBee/Library/ChurnBee.php"); ```` Basic Usage Example =================== Full event list and their arguments can be found [here](https://churnbee.com/docs) ```php <?php require_once 'vendor/autoload.php'; $options = array("accessToken"=>"change_me"); $cb = new ChurnBee\Library\ChurnBee($options); // Send registration event $cb->register("MyUserId","MyPlan");

The Versions

24/11 2013

dev-master

9999999-dev https://churnbee.com

A PHP 5.3 library for sending events to the churnbee.com service.

  Sources   Download

MIT

The Requires

  • php >=5.3.1

 

by ChurnBee Team

logging

24/11 2013

1.0.2

1.0.2.0 https://churnbee.com

A PHP 5.3 library for sending events to the churnbee.com service.

  Sources   Download

MIT

The Requires

  • php >=5.3.1

 

by ChurnBee Team

logging