2017 © Pedro Peláez
 

library doluna-sms

A package for sending SMS via Doluna service API

image

spitoglou/doluna-sms

A package for sending SMS via Doluna service API

  • Wednesday, April 13, 2016
  • by spitoglou
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

Doluna API SMS Sender Package

Build Status GitHub license GitHub release Scrutinizer Code Quality Latest Stable Version Latest Unstable Version Total Downloads, (*1)

This is a package for sending SMS messages utilizing the Doluna SMS service API., (*2)

Requirements

  • PHP >=5.5.9

Installation

Require this package with composer: (to be completed when this will be published), (*3)

composer require spitoglou/doluna-sms

After updating composer, add the ServiceProvider to the providers array in config/app.php, (*4)

'providers' => [
    //  ...
    Spitoglou\SMS\SMSServiceProvider::class,
]

Copy the package config to your local config with the publish command:, (*5)

php artisan vendor:publish

Usage

Example of quick (and a little dirty) implementation, right from a route closure:, (*6)

Route::get('smsSend/{message}', function ($message) {
    $recipient = new \Spitoglou\SMS\SMSRecipient('306973######'); //12 digit international number here (30 stands for Greece etc.)
    return \Spitoglou\SMS\SMSClass::SMSSend($recipient, $message);
});

Configurations

Edit sms.php in the app/config directory for more configurations., (*7)

/*
     |--------------------------------------------------------------------------
     | API KEY
     |--------------------------------------------------------------------------
     |
     | You will need to provide here the API key that you can generate from
     | the Doluna site, after you have registered.
     |
     */

    'dolunaAPIKey' => 'YourApiKeyHere',

License

Doluna-SMS is licensed under the MIT License., (*8)

Copyright 2015 Stavros Pitoglou, (*9)

The Versions

13/04 2016

dev-master

9999999-dev

A package for sending SMS via Doluna service API

  Sources   Download

MIT

The Requires

 

by Stavros Pitoglou

laravel sms doluna

13/04 2016

1.0.2

1.0.2.0

A package for sending SMS via Doluna service API

  Sources   Download

MIT

The Requires

 

by Stavros Pitoglou

laravel sms doluna

12/04 2016

1.0.1

1.0.1.0

A package for sending SMS via Doluna service API

  Sources   Download

MIT

The Requires

 

by Stavros Pitoglou

12/04 2016

1.0.0

1.0.0.0

A package for sending SMS via Doluna service API

  Sources   Download

MIT

The Requires

 

by Stavros Pitoglou

11/04 2016

1.0RC1

1.0.0.0-RC1

A package for sending SMS via Doluna service API

  Sources   Download

MIT

The Requires

 

by Stavros Pitoglou

28/09 2015

v0.9b

0.9.0.0-beta

A package for sending SMS via Doluna service API

  Sources   Download

MIT

The Requires

 

by Stavros Pitoglou

22/09 2015

0.1

0.1.0.0

A package for sending SMS via Doluna service API

  Sources   Download

MIT

The Requires

 

by Stavros Pitoglou