https://github.com/jungi-php/framework-extra-bundle
Attributes for request/response operations, content negotiation, and more for Symfony projects.
https://github.com/jungi-php/framework-extra-bundle
attributes content-negotiation php request response symfony symfony-bundle
Last synced: 12 months ago
JSON representation
Attributes for request/response operations, content negotiation, and more for Symfony projects.
- Host: GitHub
- URL: https://github.com/jungi-php/framework-extra-bundle
- Owner: jungi-php
- License: mit
- Created: 2019-08-11T18:53:46.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-05-07T11:55:18.000Z (almost 3 years ago)
- Last Synced: 2025-04-13T05:08:48.513Z (12 months ago)
- Topics: attributes, content-negotiation, php, request, response, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 263 KB
- Stars: 20
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# JungiFrameworkExtraBundle
[](https://github.com/jungi-php/framework-extra-bundle/actions)

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
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
[GitBook](https://piku235.gitbook.io/jungiframeworkextrabundle)
## Quick insight
```php
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);
}
}
```