Symfony integration of the vonage/vonage-php-sdk-core client
Just require the bundle with composer
composer require botjaeger/vonage-bundle
Then add the following line to your app/AppKernel.php
public function registerBundles()
{
return [
...,
new Botjaeger\VonageBundle\BotjaegerVonageBundle(),
];
}
Add the following lines to your config.yml
botjaeger_vonage:
api_key: 'vonage_api_key'
api_secret: 'vonage_api_secret'
$api = $this->get('vonage.client');
...
Must have docker installed in your system
./test