PHPackages                             halloverden/symfony-request-entity-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. halloverden/symfony-request-entity-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

halloverden/symfony-request-entity-bundle
=========================================

Symfony request entity bundle

3.2.0(2y ago)03.3k[1 PRs](https://github.com/halloverden/symfony-request-entity-bundle/pulls)MITPHPPHP &gt;=8.1

Since Jan 23Pushed 2y ago3 watchersCompare

[ Source](https://github.com/halloverden/symfony-request-entity-bundle)[ Packagist](https://packagist.org/packages/halloverden/symfony-request-entity-bundle)[ RSS](/packages/halloverden-symfony-request-entity-bundle/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (4)Versions (23)Used By (0)

HalloVerdenRequestEntityBundle
==============================

[](#halloverdenrequestentitybundle)

Deserializes a request to an entity.

Installation
============

[](#installation)

Make sure Composer is installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

Applications that use Symfony Flex
----------------------------------

[](#applications-that-use-symfony-flex)

Open a command console, enter your project directory and execute:

```
$ composer require halloverden/symfony-request-entity-bundle
```

Applications that don't use Symfony Flex
----------------------------------------

[](#applications-that-dont-use-symfony-flex)

### Step 1: Download the Bundle

[](#step-1-download-the-bundle)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

```
$ composer require halloverden/request-entity-bundle
```

### Step 2: Enable the Bundle

[](#step-2-enable-the-bundle)

Then, enable the bundle by adding it to the list of registered bundles in the `config/bundles.php` file of your project:

```
// config/bundles.php

return [
    // ...
    HalloVerden\RequestEntityBundle\HalloVerdenRequestEntityBundle::class => ['all' => true],
];
```

Usage
=====

[](#usage)

1. Create a class that extends `AbstractRequestEntity`. example:

    ```
