2017 © Pedro Peláez
 

library laravel-notifications-plivo

Plivo SMS notifications driver for Laravel

image

mateusjatenee/laravel-notifications-plivo

Plivo SMS notifications driver for Laravel

  • Thursday, April 12, 2018
  • by mateusjatenee
  • Repository
  • 1 Watchers
  • 0 Stars
  • 323 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 11 Versions
  • 39 % Grown

The README.md

Plivo notifications channel for Laravel 5.6

This is a fork of laravel-notification-channels/plivo with added support to 5.6

Latest Version on Packagist Software License Build Status StyleCI SensioLabsInsight Quality Score Code Coverage Total Downloads, (*1)

This package makes it easy to send SMS notifications using Plivo with Laravel 5.6., (*2)

Contents

Installation

You can install this package via composer: composer require mateusjatenee/laravel-notifications-plivo, (*3)

Add the service provider to config/app.php:, (*4)

// config/app.php
'providers' => [
    ...
    Mateusjatenee\Plivo\PlivoServiceProvider::class,
],

Setting up your Plivo service

Log in to your Plivo dashboard and grab your Auth Id, Auth Token and the phone number you're sending from. Add them to config/services.php., (*5)

// config/services.php
...
'plivo' => [
    'auth_id' => env('PLIVO_AUTH_ID'),
    'auth_token' => env('PLIVO_AUTH_TOKEN'),
    // Country code, area code and number without symbols or spaces
    'from_number' => env('PLIVO_FROM_NUMBER'),
    // The url Plivo will request to notify about changing sms statuses
    'webhook' => ''
],

Usage

Follow Laravel's documentation to add the channel your Notification class:, (*6)

use Illuminate\Notifications\Notification;
use NotificationChannels\Plivo\PlivoChannel;
use NotificationChannels\Plivo\PlivoMessage;

public function via($notifiable)
{
    return [PlivoChannel::class];
}

public function toPlivo($notifiable)
{
    return (new PlivoMessage)
                    ->content('This is a test SMS via Plivo using Laravel Notifications!');
}

Add a routeNotificationForPlivo method to your Notifiable model to return the phone number:, (*7)

public function routeNotificationForPlivo()
{
    // Country code, area code and number without symbols or spaces
    return preg_replace('/\D+/', '', $this->phone_number);
}

Available methods

  • content() - (string) SMS notification body
  • from() - (integer) Override default from number
  • webhook() - (string) Override the webhook in the config file

Changelog

Please see CHANGELOG for more information what has changed recently., (*8)

Testing

bash $ composer test, (*9)

Security

If you discover any security related issues, please email sid@koomai.net instead of using the issue tracker., (*10)

Contributing

Please see CONTRIBUTING for details., (*11)

Credits

License

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

The Versions

27/08 2016

v1.0.2

1.0.2.0 https://github.com/laravel-notification-channels/plivo

Plivo SMS notifications driver for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel notifications plivo

25/08 2016
25/08 2016