pm/util-zendesk-bundle

Used for integrating with the Zendesk API

1.0.0 2013-12-04 01:52 UTC

This package is not auto-updated.

Last update: 2024-04-13 12:01:36 UTC


README

A) Download PMUtilZendeskBundle

Using composer

Simply run assuming you have installed composer.phar or composer binary:

$ composer require pm/util-zendesk-bundle

B) Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new PM\Util\ZendeskBundle\PMUtilZendeskBundle,
    );
}

That's it!

Step 2: Adding configuration

A) Add the required configuration parameters to config.yml

pm_util_zendesk:
  api_url: <the zendesk url for your account>
  api_key: <your zendesk api key>
  api_user: <your zendesk api user>

Finished