franzose / laravel-smpp by franzose

SMS sending via SMPP protocol for Laravel framework.
35,293
36
3
Package Data
Maintainer Username: franzose
Maintainer Contact: iwanow.jan@gmail.com (Jan Iwanow)
Package Create Date: 2016-06-08
Package Last Update: 2024-02-09
Home Page:
Language: PHP
License: Unknown
Last Refreshed: 2024-04-30 15:05:46
Package Statistics
Total Downloads: 35,293
Monthly Downloads: 170
Daily Downloads: 8
Total Stars: 36
Total Watchers: 3
Total Forks: 29
Total Open Issues: 3

Laravel SMPP

This package is a tiny wrapper for the onlinecity/php-smpp library. It provides a basic SMPP interface and implementation for the Laravel 5.2 framework.

Installation

You can install Laravel SMPP using Composer command:

$ composer require franzose/laravel-smpp

Then you need to add LaravelSmpp\LaravelSmppServiceProvider::class to your providers array in the config/app.php and copy default configuration by invoking $ php artisan vendor:publish command.

Usage

You can use the service pretty straightforward and inject dependency in your controller:

<?php

namespace App\Http\Controllers;

class SmsController extends Controller
{
    public function send(SmppServiceInterface $smpp)
    {
        // One number
        $this->smpp->sendOne(1234567890, 'Hi, this SMS was send via SMPP protocol');
        
        // Multiple numbers
        $this->smpp->sendBulk([1234567890, 0987654321], 'Hi!');
    }
}

However it is better to abstract your SMS sending service from the SMPP implementation by defining a SMPP-compatible service interface.