Download the PHP package danilovl/doctrine-entity-dto-bundle without Composer

On this page you can find all versions of the php package danilovl/doctrine-entity-dto-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package doctrine-entity-dto-bundle

phpunit downloads latest Stable Version license

DoctrineEntityDtoBundle

About

The Symfony bundle provides a simple mechanism to convert Doctrine entities to DTO objects.

Requirements

1. Installation

Install danilovl/doctrine-entity-dto-bundle package by Composer:

Add the DoctrineEntityDtoBundle to your application's bundles if it does not add automatically:

2. Configuration

After installing the bundle, you can change configuration settings in the danilovl_doctrine_entity_dto.yaml.

Default configuration.

3. Usage

3.1 Entity DTO

The DoctrineEntityDtoBundle automatically creates doctrine hydration for every entity class names if isEnableEntityDTO is true.

You can add a control attribute isAsEntityDTO that only entities with this attribute will create DTO hydration.

You can choose your own array of entities.

Or you can combine your list with the attribute control.

You only need to use the alias name of the entity and add the entity class name to the getResult method.

Alias name selects all data in the table.

The result will be the same as Doctrine's result but without a connection to the unit of work.

If you want the name of the DTO class to be different from the entity class name, use the parameter isEnableEntityRuntimeNameDTO.

It creates the name based on the pattern %sRuntimeDTO.

Note that this feature utilizes the eval function.

3.2 Scalar DTO

If isAsScalarDTO is true, it automatically scans the src project directory for every file, trying to find a class with the attribute AsScalarDTO.

When you use the AsScalarDTO attribute, the results of namespaces are cached for prod environment.

You can declare your own list of namespaces for the DTO class in the configuration without using the attribute.

Alternatively, you can combine the attribute and list. The final result will be merged.

Example of ChequeDTO.

Before using scalar select, you need to set the class name to the static property $dtoClass.

After call getResult, ScalarHydration set to null static $dtoClass parameter.

It is a limitation of Doctrine hydration that when you use scalar select, the Doctrine ResultSetMapping is empty.

As a result, the select query returns an array of DTO objects.

4. Other

For example, when you use knplabs/knp-components to create a paginator and set a Doctrine query to pagination, if you want to create DTO objects as a result, simply add the class using the setHydrationMode method.

If use Gedmo Translatable DoctrineExtensions additionally needed setHint.

License

The DoctrineEntityDtoBundle is open-sourced software licensed under the MIT license.


All versions of doctrine-entity-dto-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
symfony/framework-bundle Version ^7.0
doctrine/doctrine-bundle Version ^2
doctrine/orm Version ^3.3
symfony/finder Version ^7.0
symfony/property-access Version ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package danilovl/doctrine-entity-dto-bundle contains the following files

Loading the files please wait ....