PHPackages                             phpinfo/smsfeedback-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. [API Development](/categories/api)
4. /
5. phpinfo/smsfeedback-bundle

ActiveSymfony-bundle[API Development](/categories/api)

phpinfo/smsfeedback-bundle
==========================

Symfony SmsFeedback SDK integration

1.1.0(6y ago)03MITPHPPHP ^7.1

Since Jun 1Pushed 6y ago1 watchersCompare

[ Source](https://github.com/phpinfo/smsfeedback-bundle)[ Packagist](https://packagist.org/packages/phpinfo/smsfeedback-bundle)[ RSS](/packages/phpinfo-smsfeedback-bundle/feed)WikiDiscussions master Synced 4d ago

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

Sms Feedback Bundle
===================

[](#sms-feedback-bundle)

Provides [SmsFeedback SDK](https://github.com/phpinfo/smsfeedback) integration with Symfony 4 Framework.

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

[](#installation)

Require the bundle with `Composer`:

```
composer require phpinfo/smsfeedback-bundle
```

Register the bundle in `config/bundles.php`:

```
return [
    SmsFeedbackBundle\SmsFeedbackBundle::class => ['all' => true],
];
```

Create simple configuration file in `config/packages/sms_feedback.yaml`:

```
sms_feedback:
    login: '%env(SMSFEEDBACK_LOGIN)%'
    password: '%env(SMSFEEDBACK_PASSWORD)%'
```

Provide credentials as environment variables in `.env.local`:

```
SMSFEEDBACK_LOGIN=my_login
SMSFEEDBACK_PASSWORD=my_password

```

Usage
-----

[](#usage)

The [`ApiClient`](https://github.com/phpinfo/smsfeedback/blob/master/src/ApiClient.php) object is now registered in the container with its interface name: `SmsFeedback\ApiClientInterface\ApiClientInterface`.

Controller usage example:

```
use SmsFeedback\ApiClientInterface;

class IndexController extends AbstractController
{
    public function index(ApiClientInterface $smsfeedback): Response
    {
        $message = $smsfeedback->send('79161234567', 'Some text');

        return new Response($message->getStatus());
    }
}
```

Console command usage example:

```
use SmsFeedback\ApiClientInterface;

class TestCommand extends Command
{
    private $smsfeedback;

    public function __construct(ApiClientInterface $smsfeedback)
    {
        parent::__construct();

        $this->smsfeedback = $smsfeedback;
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->smsfeedback->send('79161234567', 'Some text');
    }
}
```

See [SmsFeedback SDK documentation](https://github.com/phpinfo/smsfeedback/blob/master/README.md)for advanced usage cases.

Configuration
-------------

[](#configuration)

Configuration options:

```
sms_feedback:
    # Auth login (required)
    login: 'my-login'

    # Auth password (required)
    password: 'my-password'

    # Endpoint base URI
    uri: 'http://api.smsfeedback.ru'

    # Request timeout
    timeout: 5000

    logger:
        # Determines if logger is enabled (default false)
        enabled: true

        # Determines logger service name
        service: 'Psr\Log\LoggerInterface'
```

Resources
---------

[](#resources)

- [SmsFeedback SDK](https://github.com/phpinfo/smsfeedback)
- [SmsFeedback SMS sending service](https://smsfeedback.ru)
- [SmsFeedback API documentation](https://www.smsfeedback.ru/smsapi/)

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

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

Total

2

Last Release

2533d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/14e9dedbe3c0132ecddaeee1af170b0ad9111278850cd0e7f5691b347f7b7160?d=identicon)[phpinfo](/maintainers/phpinfo)

---

Top Contributors

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

---

Tags

sms

### Embed Badge

![Health badge](/badges/phpinfo-smsfeedback-bundle/health.svg)

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

###  Alternatives

[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[aloha/twilio

Twilio API for Laravel

4733.6M5](/packages/aloha-twilio)[plivo/plivo-php

A PHP SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML

1102.8M18](/packages/plivo-plivo-php)[plivo/php-sdk

A PHP SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML

1101.9M5](/packages/plivo-php-sdk)[smsapi/php-client

SMSAPI API PHP Client

652.1M17](/packages/smsapi-php-client)[africastalking/africastalking

Official Africa's Talking PHP SDK

122557.6k10](/packages/africastalking-africastalking)

PHPackages © 2026

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