PHPackages                             jefero/bot\_common - 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. jefero/bot\_common

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

jefero/bot\_common
==================

1.0.0(3y ago)011proprietaryPHPPHP &gt;=8.0

Since Oct 26Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Xeror192/bot-common)[ Packagist](https://packagist.org/packages/jefero/bot_common)[ RSS](/packages/jefero-bot-common/feed)WikiDiscussions main Synced today

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

Jefero Bot Library
==================

[](#jefero-bot-library)

Библиотека для удобного создания ботов для множества платформ

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

[](#installation)

Install bot common with composer

```
  composer require jefero/bot_common
```

Configuring
-----------

[](#configuring)

```
class Kernel extends BaseKernel
{
    //Path to library
    private const COMMON_PATH = 'vendor/jefero/bot_common';

    use MicroKernelTrait;

    //Import bot containers
    protected function configureContainer(ContainerConfigurator $container): void
    {
        $container->import('../' . self::COMMON_PATH . '/config/{packages}/*.yaml');
        $container->import('../' . self::COMMON_PATH . '/config/{packages}/' . (string)$this->environment . '/*.yaml');
        $container->import('../' . self::COMMON_PATH . '/config/services.yaml');
        $container->import('../' . self::COMMON_PATH . '/config/{services}_' . (string)$this->environment . '.yaml');

        //...other settings
    }

    //Import bot routes
    protected function configureRoutes(RoutingConfigurator $routes): void
    {

        $routes->import('../' . self::COMMON_PATH . '/config/{routes}/' . (string)$this->environment . '/*.yaml');
        $routes->import('../' . self::COMMON_PATH . '/config/{routes}/*.yaml');

        //...other settings
    }

    //Add method for register bot bundles
    public function registerBundles(): iterable
    {
        /** @psalm-suppress UnresolvableInclude */
        $commonBundles = require $this->getProjectDir() . '/' . self::COMMON_PATH . '/config/bundles.php';
        /** @psalm-suppress UnresolvableInclude */
        $currentBundles = require $this->getProjectDir() . '/config/bundles.php';
        $bundles = array_merge($commonBundles, $currentBundles);

        foreach ($bundles as $class => $envs) {
            /** @psalm-suppress UndefinedClass */
            yield new $class();
        }
    }
}
```

Add jefero\_common\_dir parameter to your services.yaml

```
parameters:
    jefero_common_dir: '%kernel.project_dir%/vendor/jefero/bot_common'
    #...other params
```

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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

Unknown

Total

1

Last Release

1345d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16627549?v=4)[Aleksandr Onikiichuk](/maintainers/Xeror192)[@Xeror192](https://github.com/Xeror192)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Psalm

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/jefero-bot-common/health.svg)

```
[![Health](https://phpackages.com/badges/jefero-bot-common/health.svg)](https://phpackages.com/packages/jefero-bot-common)
```

###  Alternatives

[oro/platform

Business Application Platform (BAP)

645143.5k115](/packages/oro-platform)[kimai/kimai

Kimai - Time Tracking

4.8k9.0k1](/packages/kimai-kimai)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M508](/packages/pimcore-pimcore)[akeneo/pim-community-dev

Akeneo PIM, the future of catalog management is open!

1.0k624.1k86](/packages/akeneo-pim-community-dev)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9421.6k61](/packages/open-dxp-opendxp)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)

PHPackages © 2026

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