sirumobile / zendesk-notifier
Symfony Zendesk Notifier Bridge
Installs: 1 159
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bridge
Requires
- php: ^7.3|^8.0
- symfony/http-client: ^5.0|^6.0|^7.0
- symfony/notifier: ^5.3|^6.0|^7.0
Requires (Dev)
- ext-json: *
- phpunit/phpunit: ^9.5
README
Provides Zendesk integration for Symfony Notifier.
Requirements
- PHP 7.3+/8.1+
- Symfony Notifier 5.3+ and HttpClient components
- Zendesk subdomain, username and API token
Installation
$ composer require sirumobile/zendesk-notifier
Add correct DSN with your Zendesk credentials to ENV. Then configure notifier and add ZendeskTransportFactory to your services.
# .env ZENDESK_DSN=zendesk://USERNAME:TOKEN@SUBDOMAIN
You can get your API key from Zendesk Admin panel. If your Zendesk domain is yourcompany.zendesk.com and username support@yourcompany.com, the DSN would look something like this:
# .env ZENDESK_DSN=zendesk://support@yourcompany.com:abc123@yourcompany
# ./config/packages/notifier.yaml framework: notifier: chatter_transports: zendesk: '%env(ZENDESK_DSN)%'
# ./config/services.yaml Siru\Notifier\Bridge\Zendesk\ZendeskTransportFactory: tags: [ chatter.transport_factory ]
Usage
By default, transport creates a Ticket on behalf of agent or admin. To create a Request on behalf of user, set the correct options using ZendOptions class.
$options = (new ZendeskOptions()) ->subject('My message') ->asRequest() ->requester('some-user@domain'); $chatMessage = new ChatMessage(''); $chatMessage->options($options);
See ZendeskOptions for all available options.