Download the PHP package homedesignshops/laravel-zendesk without Composer
On this page you can find all versions of the php package homedesignshops/laravel-zendesk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download homedesignshops/laravel-zendesk
More information about homedesignshops/laravel-zendesk
Files in homedesignshops/laravel-zendesk
Package laravel-zendesk
Short Description A Laravel Zendesk wrapper for the Zendesk API client
License MIT
Informations about the package laravel-zendesk
Laravel Zendesk
This package provides an elegant wrapper for the official Zendesk API php library. It supports creating tickets, retrieving and updating tickets, deleting tickets, etc.
Installation
Install this package via Composer using:
Laravel 5.5+ users: Skip the Service Provider installation below, because the package is configured for Package Discovery.
Configuration
Publish the config file to app/config/zendesk.php
run:
Set your configuration using environment variables in your .env
file:
ZENDESK_SUBDOMAIN
The subdomain part of your Zendesk organisation.
Example: If your organisation domain is https://homedesignshops.zendesk.com, then use homedesignshops as the subdomain
ZENDESK_USERNAME
\
The username for the authenticating account in your Zendesk organisation.
ZENDESK_TOKEN
\
The API access token. This can be a basic
token or your oauth
token. You can manage your tokens one at: https://{SUBDOMAIN}.zendesk.com/agent/admin/api/settings
Usage
Helper
The Zendesk
helper acts as a wrapper for an instance of the Zendesk\API\Client
class.
You can find all the methods available on this class in the
zendesk/zendesk_api_client_php repository. All of the methods
are available through the helper.
Examples
Dependency injection
This package is available under the MIT license.