malwarebytes / zendeskbundle
Symfony Bundle to connect with Zendesk
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 066
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 5
Forks: 6
Open Issues: 1
Requires
- php: >=5.3.0
- malwarebytes/zendesk-api: dev-master
This package is not auto-updated.
Last update: 2021-09-26 21:33:22 UTC
README
Malwarebytes\ZendeskBundle is a bundle designed to encapsulate Zendesk's REST API using a repository/entity scheme for its data model. It is a continuous work in progress.
Dependencies
Zendesk API Client
This library requires a Zendesk API client available on GitHub. Since this isn't controlled by Composer call the following from your application's root directory:
git clone git://github.com/relwell/Zendesk-API.git vendor/zendesk-api
In app/autoload.php, add the following lines before AnnotationRegistry::registerLoader(array($loader, 'loadClass')):
$loader->addClassMap( array( 'ZendeskApi\Client' => __DIR__.'/../vendor/zendesk-api/ZendeskApi/Client.php' ) );
Add the following fields to your application's parameters.yml:
parameters:
zendesk_api_key: yourkey
zendesk_api_user: youruser
zendesk_api_subdomain: yoursubdomain