PHPackages                             uapixart/laravel-turbosms - 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. [API Development](/categories/api)
4. /
5. uapixart/laravel-turbosms

ActiveLibrary[API Development](/categories/api)

uapixart/laravel-turbosms
=========================

Turbosms package for Laravel

1.0.6(8y ago)726.1k↓27.3%5MITPHPPHP &gt;=5.4.0

Since Jun 2Pushed 5y ago1 watchersCompare

[ Source](https://github.com/uapixart/laravel-turbosms)[ Packagist](https://packagist.org/packages/uapixart/laravel-turbosms)[ RSS](/packages/uapixart-laravel-turbosms/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (8)Used By (0)

laravel-turbosms
================

[](#laravel-turbosms)

A package for the Laravel Framework for sending emails using the Turbosms.ua by SOAP.

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
composer require uapixart/laravel-turbosms
```

Add to config/app.php:

```
'providers' => array(
//...
    Uapixart\LaravelTurbosms\TurbosmsServiceProvider::class,
//...
),
'aliases' => array(
//...
    'Turbosms' => Uapixart\LaravelTurbosms\TurbosmsFacade::class,
//...
),
```

Then run command:

```
$ php artisan vendor:publish --provider="Uapixart\LaravelTurbosms\TurbosmsServiceProvider"
```

Basic setup
-----------

[](#basic-setup)

You should:

- registered account at
- add sender in page
- create login and password for soap api in page

### Configuration

[](#configuration)

In your config/turbosms.php, change the following

```
'login' => '',
'password' => '',
'sender' => '',
'options' => [],
'debug' => false,
```

in debug mode sms not send only add to db table. If you need proxy:

```
'options' => ['proxy_host' => "proxy.com", 'proxy_port' => 3128],
```

Usage
-----

[](#usage)

### Send messages

[](#send-messages)

Once the extension is installed, simply use it in your code by:

```
Turbosms::send('+380XXXXXXXXX','test');
```

or for multiple recipients:

```
Turbosms::send(['+380XXXXXXXXX','+380XXXXXXXXX'],'test');
```

Example for response this command:

```
Turbosms::send(['+9873','+3805037512XX'],'Test');
```

```
array:2 [▼
  0 => array:3 [▼
    "status" => 3
    "status_detail" => "Message undelivered: Не удалось распознать номер получателя "+9873""
    "messageid" => null
  ]
  1 => array:3 [▼
    "status" => 1
    "status_detail" => "Message send"
    "messageid" => "f7a6e2c8-5931-7dda-1d29-19c0bfec6beb"
  ]
]
```

#### Statuses:

[](#statuses)

`0` - new message

`1` - in queue

`2` - message wait retry in queue

`3` - message send

`4` - message failed

### Get credit balances

[](#get-credit-balances)

Get balance for user account from config

```
Turbosms::getBalance();
```

### Get message status

[](#get-message-status)

Get status for message id

```
Turbosms::getMessageStatus('f7a6e2c8-5931-7dda-1d29-19c0bfec6beb');
```

and response:

```
array:1 [▼
  0 => array:2 [▼
    "status" => 4
    "status_description" => "Сообщение доставлено получателю"
  ]
]
```

Statuses can be next:

```
'0' => 'Сообщение с ID X не найдено',
'1' => 'Отправлено', *
'2' => 'В очереди', *
'3' => 'Сообщение передано в мобильную сеть', *
'4' => 'Сообщение доставлено получателю',
'5' => 'Истек срок сообщения',
'6' => 'Удалено оператором',
'7' => 'Не доставлено',
'8' => 'Сообщение доставлено на сервер', *
'9' => 'Отклонено оператором',
'10' => 'Неизвестный статус',
'11' => 'Ошибка, сообщение не отправлено',
'12' => 'Не достаточно кредитов на счете',
'13' => 'Отправка отменена',
'14' => 'Отправка приостановлена',
'15' => 'Удалено пользователем',
```

`*` - The status of the messages will change until the final status

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity63

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 ~3 days

Total

7

Last Release

3252d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13638129?v=4)[Mykola Kuzmich](/maintainers/mkuzmych)[@mkuzmych](https://github.com/mkuzmych)

---

Top Contributors

[![mkuzmych](https://avatars.githubusercontent.com/u/13638129?v=4)](https://github.com/mkuzmych "mkuzmych (16 commits)")

---

Tags

laravelturbosms

### Embed Badge

![Health badge](/badges/uapixart-laravel-turbosms/health.svg)

```
[![Health](https://phpackages.com/badges/uapixart-laravel-turbosms/health.svg)](https://phpackages.com/packages/uapixart-laravel-turbosms)
```

###  Alternatives

[andreaselia/laravel-api-to-postman

Generate a Postman collection automatically from your Laravel API

1.0k586.2k3](/packages/andreaselia-laravel-api-to-postman)[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[api-ecosystem-for-laravel/dingo-api

A RESTful API package for the Laravel and Lumen frameworks.

3121.5M10](/packages/api-ecosystem-for-laravel-dingo-api)[essa/api-tool-kit

set of tools to build an api with laravel

52680.5k](/packages/essa-api-tool-kit)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[kirschbaum-development/laravel-openapi-validator

Automatic OpenAPI validation for Laravel HTTP tests

581.1M5](/packages/kirschbaum-development-laravel-openapi-validator)

PHPackages © 2026

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