PHPackages                             creonit/sms-bundle - 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. creonit/sms-bundle

ActiveSymfony-bundle

creonit/sms-bundle
==================

v2.0.0(4y ago)01.2kGPL-3.0-onlyPHPPHP &gt;=7.4

Since Jul 21Pushed 4y ago1 watchersCompare

[ Source](https://github.com/creonit-dev/SmsBundle)[ Packagist](https://packagist.org/packages/creonit/sms-bundle)[ RSS](/packages/creonit-sms-bundle/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (2)Versions (4)Used By (0)

SmsBundle
=========

[](#smsbundle)

`config/packages/creonit_sms.yaml`

```
creonit_sms:
    transport: Creonit\SmsBundle\Transport\SmsTrafficTransport
    transport_config:
      login: 'login'
      password: 'password'
```

`send sms`

```
use Creonit\SmsBundle\Message\SmsMessage;
use Creonit\SmsBundle\Mime\Phone;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;

class SmsController extends AbstractController
{
    public function smsAction()
    {
        $message = new SmsMessage();

        $message
            ->setContent('Message content')
            ->setTo(new Phone('77777777777'))
            ->addTo(new Phone('77777777778'))
            ->addTo('77777777778');

        $this->dispatchMessage($message);
    }
}
```

```
use Creonit\SmsBundle\Message\SmsMessage;
use Creonit\SmsBundle\Mime\Phone;
use Symfony\Component\Messenger\MessageBusInterface;

class SmsSender
{
    protected $messageBus;

    public function __construct(MessageBusInterface $messageBus)
    {
        $this->messageBus = $messageBus;
    }

    public function send()
    {
        $message = new SmsMessage();

        $message
            ->setContent('Message content')
            ->setTo(new Phone('77777777777'))
            ->addTo(new Phone('77777777778'))
            ->addTo('77777777778');

        $this->messageBus->dispatch($message);
    }
}
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% 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 ~305 days

Total

3

Last Release

1516d ago

Major Versions

v1.0.1 → v2.0.02022-03-23

PHP version history (2 changes)v1.0.0PHP &gt;=7.2.5

v2.0.0PHP &gt;=7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/fe3645a19e6345e3d3ac55f795ef31a8ab298648d8865b02d2acd8364f66a131?d=identicon)[creonit](/maintainers/creonit)

---

Top Contributors

[![creonit-dev](https://avatars.githubusercontent.com/u/19219936?v=4)](https://github.com/creonit-dev "creonit-dev (1 commits)")[![vadicheck](https://avatars.githubusercontent.com/u/22251812?v=4)](https://github.com/vadicheck "vadicheck (1 commits)")

---

Tags

symfonycreonit

### Embed Badge

![Health badge](/badges/creonit-sms-bundle/health.svg)

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

###  Alternatives

[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[scheb/2fa

Two-factor authentication for Symfony applications (please use scheb/2fa-bundle to install)

578630.7k1](/packages/scheb-2fa)

PHPackages © 2026

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