PHPackages                             dubture/customerio-bundle - 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. [API Development](/categories/api)
4. /
5. dubture/customerio-bundle

ActiveSymfony-bundle[API Development](/categories/api)

dubture/customerio-bundle
=========================

Integrates customer.io into Symfony

0.0.1(11y ago)320.0k1MITPHP

Since Mar 12Pushed 11y ago1 watchersCompare

[ Source](https://github.com/pulse00/customerio-bundle)[ Packagist](https://packagist.org/packages/dubture/customerio-bundle)[ RSS](/packages/dubture-customerio-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (6)Versions (2)Used By (0)

customer.io bundle
==================

[](#customerio-bundle)

[![Build Status](https://camo.githubusercontent.com/ad97fb5f32731d36c420ee5d2aa2e81b5f429b8fed3347bb1b7638c4faa9c0fd/68747470733a2f2f7472617669732d63692e6f72672f70756c736530302f637573746f6d6572696f2d62756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/pulse00/customerio-bundle)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/78ed82bbab9ba5429156390a5213bb7a806e7300f043d8ee768d5368099b64ab/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f70756c736530302f637573746f6d6572696f2d62756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/pulse00/customerio-bundle/?branch=master)

[![Latest Stable Version](https://camo.githubusercontent.com/1b3ced8bd3b35b2099cafaf822af19caf388d37280654ea5e8b076029bd3409b/68747470733a2f2f706f7365722e707567782e6f72672f647562747572652f637573746f6d6572696f2d62756e646c652f762f737461626c652e737667)](https://packagist.org/packages/dubture/customerio-bundle) [![Total Downloads](https://camo.githubusercontent.com/3e9a4ea033ba2255f42900c3fb93c3954fb201f0037636d2d843d236aa30ef8e/68747470733a2f2f706f7365722e707567782e6f72672f647562747572652f637573746f6d6572696f2d62756e646c652f646f776e6c6f6164732e737667)](https://packagist.org/packages/dubture/customerio-bundle) [![License](https://camo.githubusercontent.com/a4f39d661ed56815d35cc8d513a8ba08abe5fada5527a07fab65209b7f0b72c9/68747470733a2f2f706f7365722e707567782e6f72672f647562747572652f637573746f6d6572696f2d62756e646c652f6c6963656e73652e737667)](https://packagist.org/packages/dubture/customerio-bundle)

Symfony integration for .

Configuration
-------------

[](#configuration)

Install the bundle using composer and register it in your Kernel.

Then configure your `site_id` and `api_key`:

```
# app/config/config.yml

dubture_customer_io:
  site_id:
  api_key:
```

Usage
-----

[](#usage)

### Customer model

[](#customer-model)

Implement `Dubture\CustomerIOBundle\Model\CustomerInterface` on your customer domain class.

### Event Tracking / Customer identification

[](#event-tracking--customer-identification)

```
use Dubture\CustomerIOBundle\Event\TrackingEvent;
use Dubture\CustomerIOBundle\Event\ActionEvent;

/** @var \Symfony\Component\EventDispatcher\EventDispatcher $tracker */
$dispatcher = $this->getContainer()->get('event_dispatcher');

$customer = $someRepo->getCustomer(); // retrieve your customer domain object

// send the customer over to customer.io for identification
$dispatcher->dispatch(TrackingEvent::IDENTIFY, new TrackingEvent($customer));

// now track a `click` event
$dispatcher->dispatch(TrackingEvent::ACTION, new ActionEvent($customer, 'click'));
```

### Webhooks

[](#webhooks)

The bundle comes with a controller which can consume customer.io [webhooks](http://customer.io/docs/webhooks.html).

To use them, register the routing.xml:

```
# app/config/routing.yml

customerio_hooks:
    resource: "@DubtureCustomerIOBundle/Resources/config/routing.xml"
```

Now your hook url will be `http://your.project.com//__dubture/customerio` which you need to configure over at customer.io.

After doing so, you can listen to webhook events:

```

```

```
use Dubture\CustomerIOBundle\Event\WebHookEvent;

class WebhookListener
{
    public function onClick(WebHookEvent $event)
    {
        $this->logger->info('Customer clicked on email with address: '
        . $event->getEmail());
    }
}
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

4075d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/410d88b323657243a2319b2254705cf2e0bf8f19c1bdebfc54c8b198aedade91?d=identicon)[pulse00](/maintainers/pulse00)

---

Top Contributors

[![pulse00](https://avatars.githubusercontent.com/u/185278?v=4)](https://github.com/pulse00 "pulse00 (8 commits)")

---

Tags

symfonyCustomeriocustomer retention

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/dubture-customerio-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/dubture-customerio-bundle/health.svg)](https://phpackages.com/packages/dubture-customerio-bundle)
```

###  Alternatives

[cravler/maxmind-geoip-bundle

Bundle integrating MaxMind GeoIP2 database into symfony application

27615.8k2](/packages/cravler-maxmind-geoip-bundle)[noiselabs/nusoap-bundle

Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP

22535.2k](/packages/noiselabs-nusoap-bundle)[borsaco/telegram-bot-api-bundle

A simple wrapper for telegram-bot-api.

5633.0k](/packages/borsaco-telegram-bot-api-bundle)[nanofelis/json-rpc-bundle

This bundle provides a JSON RPC 2.0 implementation for Symfony

1176.1k](/packages/nanofelis-json-rpc-bundle)[stfalcon-studio/api-bundle

Base classes and helper services to build API application via Symfony.

1032.1k](/packages/stfalcon-studio-api-bundle)[ufo-tech/json-rpc-sdk-bundle

The Symfony bundle for simple usage Json-RPC api with dynamic SDK

172.5k](/packages/ufo-tech-json-rpc-sdk-bundle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
