PHPackages                             churnbee/php-lib - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. churnbee/php-lib

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

churnbee/php-lib
================

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

1.0.2(12y ago)162MITPHPPHP &gt;=5.3.1

Since Nov 24Pushed 12y ago1 watchersCompare

[ Source](https://github.com/ChurnBee/php-lib)[ Packagist](https://packagist.org/packages/churnbee/php-lib)[ Docs](https://churnbee.com)[ RSS](/packages/churnbee-php-lib/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (2)Used By (0)

ChurnBee php-lib
================

[](#churnbee-php-lib)

ChurnBee php API integration library. [Visit official page for more information](https://churnbee.com/)

Requirements
------------

[](#requirements)

This module has no external dependencies.

Installing with Composer
------------------------

[](#installing-with-composer)

### Define Your Dependencies

[](#define-your-dependencies)

We recommend installing this package with [Composer](http://getcomposer.org/). Add the following dependencies to your projects composer.json file:

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

Then, on the command line:

```
curl -s http://getcomposer.org/installer | php
php composer.phar install
```

Use the generated `vendor/autoload.php` file to autoload the library classes.

Installing without Composer
---------------------------

[](#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
===================

[](#basic-usage-example)

Full event list and their arguments can be found [here](https://churnbee.com/docs)

```
