Total Voice SDK wrapper for Laravel/Lumen.
You can install the package via composer:
composer require aiqfome/totalvoice-laravel
Publish the config:
php artisan vendor:publish
Insert your TotalVoice API token in the config file config/totalvoice.php
:
<?php
return [
...
'token' => 'YOUR_TOKEN_HERE',
...
];
Or in your env file .env
:
...
TOTAL_VOICE_API_TOKEN="YOUR_TOKEN_HERE"
...
Check the Total Voice SDK documentation.
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.