2017 © Pedro Peláez
 

library laravel-verimor-sms

Verimor SMSAPI for Laravel applications

image

umuttaymaz/laravel-verimor-sms

Verimor SMSAPI for Laravel applications

  • Thursday, March 1, 2018
  • by umuttaymaz
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Verimor notifications channel for Laravel 5.3+

Software License Build Status StyleCI Total Downloads, (*1)

This package makes it easy to send notifications using VerimorSMS with Laravel 5.3+., (*2)

Contents

Installation

You can install the package via composer:, (*3)

composer require umuttaymaz/laravel-verimor-sms

Then you must install the service provider:, (*4)

// config/app.php
'providers' => [
    ...
    UmutTaymaz\VerimorSMSAPI\VerimorServiceProvider::class
],

'alias' => [
    ...
    'Verimor' => UmutTaymaz\VerimorSMSAPI\Facades\Verimor::class
]

Setting up the VerimorSMSAPI service

Add your Verimor username, password and default sender name to your .env:, (*5)

VERIMOR_USERNAME=username
VERIMOR_PASSWORD=apiPassword
VERIMOR_HEADER=verifiedHeader

Usage

return Verimor::send('Example Message', function ($sms){
        $sms->to(['phoneNumber1', 'phoneNumber2']);
});

or, (*6)

return Verimor::send('Example Message', function ($sms){
        $sms->to('phoneNumber');
});

If you want to send SMS with another header instead of env variable:, (*7)

return Verimor::header('anotherHeader')->send('Example Message', function ($sms){
        $sms->to('phoneNumber');
});

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 umut@kreator.com.tr 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

01/03 2018

dev-master

9999999-dev https://github.com/umuttaymaz/laravel-verimor-sms

Verimor SMSAPI for Laravel applications

  Sources   Download

MIT

The Requires

 

The Development Requires

01/03 2018

1.0.2

1.0.2.0 https://github.com/umuttaymaz/laravel-verimor-sms

Verimor SMSAPI for Laravel applications

  Sources   Download

MIT

The Requires

 

The Development Requires

28/02 2018

1.0.1

1.0.1.0 https://github.com/umuttaymaz/laravel-verimor-sms

Verimor SMSAPI for Laravel applications

  Sources   Download

MIT

The Requires

 

The Development Requires