PHPackages                             studservis/feedback - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. studservis/feedback

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

studservis/feedback
===================

Services feedback

v0.0.2(1y ago)06.9k↓13.5%MITPHP

Since Aug 28Pushed 1y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (3)Used By (0)

Сервис по отправке Feedback
===========================

[](#сервис-по-отправке-feedback)

Быстрый старт
-------------

[](#быстрый-старт)

Определи переменные окружения

```
BOT_TOKEN="Youtoken"
BOT_CHAT_ID="YouChatID"
```

Проинициализируй конструктор переменными окружения

```
$botToken = env('BOT_TOKEN');
$chatId = env('BOT_CHAT_ID');

$client = new ProxyTelegramConnector(string $botToken, string $chatId)
```

Инициализация сервиса
---------------------

[](#инициализация-сервиса)

Сервис инициализируется ClientInterface'ом. Имеется встроенный Клиент ProxyTelegramConnector, который является interface для ClientInterface. ProxyTelegramConnector проксирующий клиент запросов.

```
$client = new ProxyTelegramConnector(..., string $botToken, string $chatId) // Implements ClientInterface
```

Для Container это может выглядеть следующим образом

```
ClientInterface::class => function (ContainerInterface $container) {
    return new ProxyTelegramConnector(
        $container->get(PsrClientInterface::class),
        $container->get(Psr17Factory::class),
        env('BOT_TOKEN') ?? '',
        env('BOT_CHAT_ID') ?? ''
    );
},
```

Расширяемость
-------------

[](#расширяемость)

Для использование собственного Клиента, наследуй интерфейс ClientInterface или расширяй ProxyTelegramConnector

```
use Feedback\Interfaces\ClientInterface;

class CustomConnector implements ClientInterface
{

}
```

или

```
use Feedback\Connectors\ProxyTelegramConnector;

class CustomConnector extends ProxyTelegramConnector
{

}
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity31

Early-stage or recently created project

 Bus Factor1

Top contributor holds 90% 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 ~0 days

Total

2

Last Release

628d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1e3219d441ef362f8f058365fc73210e8b0ac2c403af35f711ff3dc0ff6b781a?d=identicon)[studservis](/maintainers/studservis)

---

Top Contributors

[![scagroup](https://avatars.githubusercontent.com/u/23312520?v=4)](https://github.com/scagroup "scagroup (9 commits)")[![kleba37](https://avatars.githubusercontent.com/u/88034339?v=4)](https://github.com/kleba37 "kleba37 (1 commits)")

### Embed Badge

![Health badge](/badges/studservis-feedback/health.svg)

```
[![Health](https://phpackages.com/badges/studservis-feedback/health.svg)](https://phpackages.com/packages/studservis-feedback)
```

###  Alternatives

[sunnysideup/typography

Add a typography test page to your silverstripe website / application.

124.2k3](/packages/sunnysideup-typography)

PHPackages © 2026

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