invit/plivo-bundle

Plivo PHP library service bundle

2.4 2021-02-17 09:24 UTC

This package is auto-updated.

Last update: 2024-04-26 15:22:34 UTC


README

This bundle creates a Symfony wrapper service for the official Plivo PHP helper library

Installation

composer require invit/plivo-bundle

Also, enable the bundle in bundles.php:

<?php
// config/bundles.php

return [
    ...
    Invit\PlivoBundle\InvitPlivoBundle::class => ['all' => true],
    ...
];

Configure the application with the credentials you find on the plivo dashboard.

invit_plivo:
    auth:
        auth_id:      "xxxxx"
        auth_token:   "yyyyy"

Example

$this->get(PlivoApi::class)->calls->play(
    'cf5fe5ff-9952-yyyy-xxxx-b75ff490ffff', 
    ['https://s3-eu-west-1.amazonaws.com/waitsongbucket/wait.mp3'], 
    [
        'loop' => 'true',
        'mix' => 'false',
        'legs' => 'both',
    ]
);