aiqfome/totalvoice-laravel

Total Voice SDK wrapper for Laravel/Lumen

v2.1.1 2023-03-23 12:59 UTC

This package is auto-updated.

Last update: 2024-04-23 15:16:34 UTC


README

Latest Version on Packagist Build Status Total Downloads

Total Voice SDK wrapper for Laravel/Lumen.

Installation

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"
...

Usage

Check the Total Voice SDK documentation.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email gian_bine@hotmail.com instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.