botjaeger / nexmo-bundle
Integrates vonage/client in symfony >= 4
Installs: 1 995
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1
- php-http/guzzle7-adapter: ^1.0
- symfony/config: ^3.4|^4.0
- symfony/dependency-injection: ^3.4|^4.0
- symfony/http-client: ^3.4|^4.0
- symfony/http-kernel: ^3.4|^4.0
- symfony/yaml: ^3.4|^4.0
- vonage/client-core: 2.1.0
Requires (Dev)
- symfony/browser-kit: ^4.3
- symfony/css-selector: ^4.3
- symfony/framework-bundle: ^3.4|^4.1
- symfony/phpunit-bridge: ^5.1
README
Symfony integration of the vonage/vonage-php-sdk-core client
Getting Started
Installing
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(),
];
}
Configuration
Add the following lines to your config.yml
botjaeger_vonage:
api_key: 'vonage_api_key'
api_secret: 'vonage_api_secret'
Usage
$api = $this->get('vonage.client');
...
Test
Must have docker installed in your system
./test