PHPackages                             jungi/framework-extra-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. jungi/framework-extra-bundle

AbandonedArchivedSymfony-bundle

jungi/framework-extra-bundle
============================

attributes for request and response operations, content negotiation, and more for symfony projects

v2.1.0(3y ago)20698MITPHPPHP &gt;=8.0.2

Since Aug 25Pushed 3y ago1 watchersCompare

[ Source](https://github.com/piku235/jungi-framework-extra-bundle)[ Packagist](https://packagist.org/packages/jungi/framework-extra-bundle)[ RSS](/packages/jungi-framework-extra-bundle/feed)WikiDiscussions main Synced 5d ago

READMEChangelog (8)Dependencies (8)Versions (11)Used By (0)

JungiFrameworkExtraBundle
=========================

[](#jungiframeworkextrabundle)

[![Build Status](https://github.com/jungi-php/framework-extra-bundle/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/jungi-php/framework-extra-bundle/actions)[![PHP](https://camo.githubusercontent.com/f1b79028950b13a00c93c528a2b916f670e2670f7dbfef7c535362efd231a5e2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6a756e67692f6672616d65776f726b2d65787472612d62756e646c65)](https://camo.githubusercontent.com/f1b79028950b13a00c93c528a2b916f670e2670f7dbfef7c535362efd231a5e2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6a756e67692f6672616d65776f726b2d65787472612d62756e646c65)

This bundle adds additional features whose main purpose is to facilitate request/response operations.

Attributes:

- [`RequestBody`](https://piku235.gitbook.io/jungiframeworkextrabundle/attributes#requestbody)
- [`RequestHeader`](https://piku235.gitbook.io/jungiframeworkextrabundle/attributes#requestheader)
- [`RequestCookie`](https://piku235.gitbook.io/jungiframeworkextrabundle/attributes#requestcookie)
- [`RequestParam`](https://piku235.gitbook.io/jungiframeworkextrabundle/attributes#requestparam)
- [`QueryParam`](https://piku235.gitbook.io/jungiframeworkextrabundle/attributes#queryparam)
- [`QueryParams`](https://piku235.gitbook.io/jungiframeworkextrabundle/attributes#queryparams)

Development
-----------

[](#development)

With the new release of Symfony v6.3 [mapping request data to typed objects](https://symfony.com/blog/new-in-symfony-6-3-mapping-request-data-to-typed-objects), the development and further need for this bundle has come to an end.

Documentation
-------------

[](#documentation)

[GitBook](https://piku235.gitbook.io/jungiframeworkextrabundle)

Quick insight
-------------

[](#quick-insight)

```
namespace App\Controller;

use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\Routing\Attribute\Route;
use Jungi\FrameworkExtraBundle\Attribute\QueryParams;
use Jungi\FrameworkExtraBundle\Attribute\RequestBody;
use Jungi\FrameworkExtraBundle\Attribute\QueryParam;
use Jungi\FrameworkExtraBundle\Attribute\RequestParam;
use Jungi\FrameworkExtraBundle\Controller\ControllerTrait;

#[Route('/users')]
class UserController
{
    use ControllerTrait;

    #[Route('/{userId}/residential-address', methods: ['PATCH'])]
    public function changeResidentialAddress(string $userId, #[RequestBody] UserResidentialAddressData $data)
    {
        // ..
    }

    #[Route('/{userId}/files/{fileName}', methods: ['PUT'])]
    public function uploadFile(string $userId, string $fileName, #[RequestBody] UploadedFile $file)
    {
        // ..
    }

    #[Route('/{userId}/avatar', methods: ['PATCH'])]
    public function replaceAvatar(string $userId, #[RequestParam] UploadedFile $file,  #[RequestParam] string $title)
    {
        // ..
    }

    #[Route(methods: ['GET'])]
    public function getUsers(#[QueryParam] ?int $limit = null, #[QueryParam] ?int $offset = null)
    {
        // ..
    }

    #[Route(methods: ['GET'])]
    public function filterUsers(#[QueryParams] FilterUsersDto $filterData)
    {
        // ..
        /** @var UserData[] $filteredUsers */
        return $this->entity($filteredUsers);
    }
}
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

Established project with proven stability

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

Recently: every ~110 days

Total

10

Last Release

1256d ago

Major Versions

1.x-dev → v2.0.02022-03-12

PHP version history (3 changes)v1.0.0PHP ^7.2.9

v1.2.0PHP &gt;=7.2.9

v2.0.0PHP &gt;=8.0.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/787c95c77f60d6026a4d95e28fe61b502cfa62b5e92a6c1b875c00b1e14b88ad?d=identicon)[piku235](/maintainers/piku235)

---

Top Contributors

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

---

Tags

attributescontent-negotiationphprequestresponsesymfonysymfony-bundleconversionmapperparambody

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/jungi-framework-extra-bundle/health.svg)

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

###  Alternatives

[simplesamlphp/simplesamlphp

A PHP implementation of a SAML 2.0 service provider and identity provider.

1.1k12.4M193](/packages/simplesamlphp-simplesamlphp)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[pentatrion/vite-bundle

Vite integration for your Symfony app

2725.3M13](/packages/pentatrion-vite-bundle)[scheb/2fa

Two-factor authentication for Symfony applications (please use scheb/2fa-bundle to install)

578630.7k1](/packages/scheb-2fa)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)

PHPackages © 2026

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