Integrates the Octopush SMS API client with Symfony.
The recommended way to install OctopushSMSBundle is through composer:
$ composer require octopush/sms-bundle
Then enable it in your kernel:
<?php
public function registerBundles()
{
$bundles = [
//...
new Octopush\Bundle\SMSBundle\OctopushSMSBundle(),
];
}
octopush_sms:
user_login: "**********@*******"
api_key: "****************"
You can obtain Octopush SMS API client from Symfony container using:
<?php
$container->get('octopush_sms.api.client');
There is bundle setup example using Symfony Standard Edition available.
For more information about using the client, check Octopush SMS API.