whatson-web / messagebird-bundle
Symfony bundle to easily integrate MessageBird SDK into a Symfony project.
Installs: 412
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- messagebird/php-rest-api: ^1.6
This package is not auto-updated.
Last update: 2024-11-10 06:17:51 UTC
README
A symfony integration for the MessageBird PHP SDK
This bundle allow you to manipulate the MessageBird SDK as a Symfony service.
Installation
To install this bundle, run the command below and you will get the latest version from Packagist.
composer require whatson-web/messagebird-bundle
Load required bundles in AppKernel.php:
// app/AppKernel.php public function registerBundles() { $bundles = array( // [...] new WH\Bundle\MessageBirdBundle\WHMessageBirdBundle() ); }
And set-up the required configuration
# config/packages/wh_message_bird.yml wh_message_bird: api_key: "xxxxxxxxxxxxxxxxx" # The MessageBird API key can be added as a symfony parameter
Usage
Then, it is possible to use this service from inside a controller
$messageBirdClient = $this->get('wh.message_bird.client');
The MessageBirdClient php class extends the default MessageBird PHP SDK class, allowing you to do anything that this SDK can do. Plus, it will automatically be authenticated with your MessageBird API Key, which you do not have to worry about at all.