PHPackages                             aerisnet/fiesta-online-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. aerisnet/fiesta-online-bundle

ActiveSymfony-bundle

aerisnet/fiesta-online-bundle
=============================

This bundle eases the development to Fiesta Online Homepages

v1.0.1(4y ago)014MITPHPPHP &gt;=7.2.5

Since May 14Pushed 4y ago1 watchersCompare

[ Source](https://github.com/Flainity/fiesta-online-bundle)[ Packagist](https://packagist.org/packages/aerisnet/fiesta-online-bundle)[ RSS](/packages/aerisnet-fiesta-online-bundle/feed)WikiDiscussions main Synced yesterday

READMEChangelog (2)Dependencies (4)Versions (3)Used By (0)

Fiesta Online Bundle
====================

[](#fiesta-online-bundle)

A Symfony 4+ Bundle for Fiesta Online web projects

Basic Information
-----------------

[](#basic-information)

This bundle includes all most relevant Entities and Managers needed to create a basic Fiesta Online homepage.

Installation for Symfony 4 &amp; 5
----------------------------------

[](#installation-for-symfony-4--5)

The bundle is available via packagist to directly integrate into your application

1. Go into your root directory of your project
2. Run `composer require aerisnet/fiesta-online-bundle`
3. To use the included Entities with your application, you have to refer to the bundle entities in your doctrine configuration. An example mapping can be found below

```
dbal:
    connections:
        character:
            url: '%env(resolve:CHARACTER_URL)%'
            driver: 'pdo_sqlsrv'
            charset: UTF-8
...

orm:
    entity_managers:
        character:
            connection: character
            mappings:
                Character:
                type: annotation
                dir: '%kernel.project_dir%/vendor/aeris/fiesta-online-bundle/src/Entity/Character'
                prefix: 'Aeris\FiestaOnlineBundle\Entity\Character'
                alias: Character
```

Examples
--------

[](#examples)

#### Account Manager

[](#account-manager)

```
public function indexAction(AccountManager $accountManager)
{
    /**
     * @var User $user
     * returns a User instance or null by the given Account ID
     */
    $user = $accountManager->getAccountById(5);
    ...

    /**
     * @var User[] $user
     * returns all accounts
     */
    $user = $accountManager->getAllAccounts();
    ...

    /**
     * @var User $user
     * returns a User instance with all characters belonging to the account as Proxy objects
     */
    $user = $accountManager->getAccountWithCharacters(5);
}
```

#### Character Manager

[](#character-manager)

```
public function indexAction(CharacterManager $characterManager)
{
    /**
     * @var Character $character
     * returns a Character instance or null by the given Character ID
     */
    $character = $characterManager->getCharacterById(123);
    ...

    /**
     * @var Character $character
     * returns a Character instance or null by the given Character Name
     */
    $character = $characterManager->getCharacterByName('Visionaire');
    ...

    /**
     * Check if a character has an item in their inventory
     * Parameters are Character ID and Item ID
     */
    $hasItem = $characterManager->hasItemInInventory($character->getId(), 385782);
}
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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

Total

2

Last Release

1740d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13811606?v=4)[Daniel Engelke](/maintainers/Flainity)[@Flainity](https://github.com/Flainity)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/aerisnet-fiesta-online-bundle/health.svg)

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

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[kimai/kimai

Kimai - Time Tracking

4.6k7.4k1](/packages/kimai-kimai)[open-dxp/opendxp

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

7310.3k29](/packages/open-dxp-opendxp)[kadirov/api-starter-kit

443.9k](/packages/kadirov-api-starter-kit)[easycorp/easyadmin-demo

EasyAdmin Demo Application

145.7k](/packages/easycorp-easyadmin-demo)

PHPackages © 2026

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