PHPackages                             telephantast/telephantast-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. [Framework](/categories/framework)
4. /
5. telephantast/telephantast-bundle

ActiveSymfony-bundle[Framework](/categories/framework)

telephantast/telephantast-bundle
================================

Telephantast Symfony Bundle

0.1.x-dev(1y ago)29601MITPHPPHP ^8.1

Since Mar 23Pushed 1y ago1 watchersCompare

[ Source](https://github.com/telephantast/telephantast-bundle)[ Packagist](https://packagist.org/packages/telephantast/telephantast-bundle)[ RSS](/packages/telephantast-telephantast-bundle/feed)WikiDiscussions 0.1.x Synced yesterday

READMEChangelogDependencies (6)Versions (1)Used By (0)

Telephantast Symfony Bundle
===========================

[](#telephantast-symfony-bundle)

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

[](#installation)

```
composer require telephantast/telephantast-bundle '^0.1@dev'
```

If you use Symfony Flex, the bundle will be automatically registered in `bundles.php`. Otherwise, do it manually:

```
return [
    // ...
+   Telephantast\TelephantastBundle\TelephantastBundle::class => ['all' => true],
];
```

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

[](#configuration)

See the full config by running:

```
bin/console debug:config telephantast
```

Configuration for [bunny-transport](https://github.com/telephantast/bunny-transport) and [doctrine-persistence](https://github.com/telephantast/doctrine-persistence):

```
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Telephantast\DoctrinePersistence\DoctrineOrmEntityFinderAndSaver;
use Telephantast\DoctrinePersistence\DoctrineOrmTransactionProvider;
use Telephantast\DoctrinePersistence\DoctrinePostgresOutboxStorage;

return static function (ContainerConfigurator $di): void {
    $di->extension('telephantast', [
        'entity_finder_id' => DoctrineOrmEntityFinderAndSaver::class,
        'entity_saver_id' => DoctrineOrmEntityFinderAndSaver::class,
        'async' => [
            'bunny' => [
                'host' => '%env(string:key:host:url:TELEPHANTAST_TRANSPORT_URL)%',
                'port' => '%env(int:key:port:url:TELEPHANTAST_TRANSPORT_URL)%',
                'user' => '%env(string:key:user:url:TELEPHANTAST_TRANSPORT_URL)%',
                'password' => '%env(string:key:pass:url:TELEPHANTAST_TRANSPORT_URL)%',
                'vhost' => '%env(string:key:path:url:TELEPHANTAST_TRANSPORT_URL)%',
                'heartbeat' => '%env(int:key:heartbeat:query_string:TELEPHANTAST_TRANSPORT_URL)%',
            ],
            'outbox' => [
                'transaction_provider_id' => DoctrineOrmTransactionProvider::class,
                'storage_id' => DoctrinePostgresOutboxStorage::class,
            ],
        ],
        'entities' => [
            MyEntity::class => null,
        ],
    ]);

    $di->services()
        ->defaults()
            ->autowire()
            ->autoconfigure()
        ->set(DoctrineOrmTransactionProvider::class)
        ->set(DoctrinePostgresOutboxStorage::class)
        ->set(DoctrineOrmEntityFinderAndSaver::class);
};
```

```
TELEPHANTAST_TRANSPORT_URL=bunny://guest:guest@rabbitmq:5672//?heartbeat=60
```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance42

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

 Bus Factor1

Top contributor holds 88.9% 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

468d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2552865?v=4)[Valentin Udaltsov](/maintainers/vudaltsov)[@vudaltsov](https://github.com/vudaltsov)

---

Top Contributors

[![vudaltsov](https://avatars.githubusercontent.com/u/2552865?v=4)](https://github.com/vudaltsov "vudaltsov (8 commits)")[![iGrog](https://avatars.githubusercontent.com/u/842588?v=4)](https://github.com/iGrog "iGrog (1 commits)")

### Embed Badge

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

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

PHPackages © 2026

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