wpeereboom / php-mandrill
Php library to parse webhooks from Mandrill
dev-master
2015-12-03 10:11 UTC
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2024-10-30 17:23:38 UTC
README
Introduction
This library can handle the webhooks send by Mandrill
Features
This library’s features include the following.
- Parse send events
Installation
The recommended way to install this library is through Composer:
$ php composer.phar require wpeereboom/php-mandrill dev-master
Usage
The client
Use the client to get the call data. First construct a client and call the methods to receive the data:
$parser = new Parser($rawEventMessage); // To get the event $event = $parser->parse();