PHPackages                             spitoglou/doluna-sms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. spitoglou/doluna-sms

ActiveLibrary[HTTP &amp; Networking](/categories/http)

spitoglou/doluna-sms
====================

A package for sending SMS via Doluna service API

1.0.2(10y ago)012MITPHPPHP &gt;=5.5.9

Since Sep 21Pushed 10y ago1 watchersCompare

[ Source](https://github.com/spitoglou/doluna-sms)[ Packagist](https://packagist.org/packages/spitoglou/doluna-sms)[ RSS](/packages/spitoglou-doluna-sms/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (3)Dependencies (3)Versions (7)Used By (0)

Doluna API SMS Sender Package
=============================

[](#doluna-api-sms-sender-package)

[![Build Status](https://camo.githubusercontent.com/554b26791f334f3a8eadf5b9569ef2148ff51f39b8414e5e89c79378c61d9076/68747470733a2f2f7472617669732d63692e6f72672f737069746f676c6f752f646f6c756e612d736d732e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/spitoglou/doluna-sms)![GitHub license](https://camo.githubusercontent.com/e96730590702aed5324ec298dc6cfb7c2504035659323623b903e03e30b05de4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f737069746f676c6f752f646f6c756e612d736d732e737667)![GitHub release](https://camo.githubusercontent.com/c6aad676b34db9e27144d0892716ae29a1425d268b0a3b3a2330a0d11e315ac5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f737069746f676c6f752f646f6c756e612d736d732e737667)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/ce4aa2f9ba2a4d2f894df6cd67a8704a1d9993cb35d88af8c466f74978d09da8/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f737069746f676c6f752f646f6c756e612d736d732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/spitoglou/doluna-sms/?branch=master)[![Latest Stable Version](https://camo.githubusercontent.com/c4130e638319b3790bc9cac5f80aeb160ae7f0fc81eb10fb217d8b4fb5962c30/68747470733a2f2f706f7365722e707567782e6f72672f737069746f676c6f752f646f6c756e612d736d732f76657273696f6e)](https://packagist.org/packages/spitoglou/doluna-sms)[![Latest Unstable Version](https://camo.githubusercontent.com/624827093f738d3a1829904c5667dae4f7076f6a03446b2c8c1d4e0b2d1fb8b8/68747470733a2f2f706f7365722e707567782e6f72672f737069746f676c6f752f646f6c756e612d736d732f762f756e737461626c65)](//packagist.org/packages/spitoglou/doluna-sms)[![Total Downloads](https://camo.githubusercontent.com/bc5ae7282b7f44d15d07871ed05cee021c06b7ebf65d6a6cc7e1c1cb49f96165/68747470733a2f2f706f7365722e707567782e6f72672f737069746f676c6f752f646f6c756e612d736d732f646f776e6c6f616473)](https://packagist.org/packages/spitoglou/doluna-sms)

> **This is a package for sending SMS messages utilizing the Doluna SMS service API.**

Requirements
------------

[](#requirements)

- PHP &gt;=5.5.9

Installation
------------

[](#installation)

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

```
composer require spitoglou/doluna-sms

```

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

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

```

Copy the package config to your local config with the publish command:

```
php artisan vendor:publish

```

Usage
-----

[](#usage)

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

```
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
--------------

[](#configurations)

Edit `sms.php` in the `app/config` directory for more configurations.

```
/*
     |--------------------------------------------------------------------------
     | 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
-------

[](#license)

Doluna-SMS is licensed under the [MIT License](http://opensource.org/licenses/MIT).

Copyright 2015 **Stavros Pitoglou**

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~41 days

Recently: every ~49 days

Total

6

Last Release

3730d ago

Major Versions

v0.9b → 1.0RC12016-04-11

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/938287?v=4)[Stavros Pitoglou](/maintainers/spitoglou)[@spitoglou](https://github.com/spitoglou)

---

Top Contributors

[![spitoglou](https://avatars.githubusercontent.com/u/938287?v=4)](https://github.com/spitoglou "spitoglou (22 commits)")

---

Tags

laravelsmsdoluna

### Embed Badge

![Health badge](/badges/spitoglou-doluna-sms/health.svg)

```
[![Health](https://phpackages.com/badges/spitoglou-doluna-sms/health.svg)](https://phpackages.com/packages/spitoglou-doluna-sms)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[spatie/laravel-health

Monitor the health of a Laravel application

87411.3M154](/packages/spatie-laravel-health)[illuminate/http

The Illuminate Http package.

11937.2M6.6k](/packages/illuminate-http)[venturedrake/laravel-crm

A free open source CRM built as a package for laravel projects

42010.0k](/packages/venturedrake-laravel-crm)[api-platform/laravel

API Platform support for Laravel

59156.3k11](/packages/api-platform-laravel)[simplestats-io/laravel-client

Analytics for Laravel. Track visitors, registrations, and payments. Discover which channels actually drive revenue, not just traffic. Server-side, GDPR compliant, ad-blocker proof.

5019.3k](/packages/simplestats-io-laravel-client)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
