Download the PHP package phpguild/doctrine-extra-bundle without Composer
On this page you can find all versions of the php package phpguild/doctrine-extra-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download phpguild/doctrine-extra-bundle
More information about phpguild/doctrine-extra-bundle
Files in phpguild/doctrine-extra-bundle
Download phpguild/doctrine-extra-bundle
More information about phpguild/doctrine-extra-bundle
Files in phpguild/doctrine-extra-bundle
Vendor phpguild
Package doctrine-extra-bundle
Short Description Doctrine Extra Bundle
License GPL-3.0
Package doctrine-extra-bundle
Short Description Doctrine Extra Bundle
License GPL-3.0
Please rate this library. Is it a good library?
Informations about the package doctrine-extra-bundle
Doctrine Extra Bundle
Installation
Install with composer
composer req phpguild/doctrine-extra-bundle
Usage
Models
Entity with UUID
Auto generated UUID
use Doctrine\ORM\Mapping as ORM;
use PhpGuild\DoctrineExtraBundle\Model\Uuid\UuidInterface;
use PhpGuild\DoctrineExtraBundle\Model\Uuid\UuidTrait;
/**
* Class User
*
* @ORM\Entity
*/
class User implements UuidInterface
{
use UuidTrait;
}
Entity with Identity
Auto increment numeric ID
use Doctrine\ORM\Mapping as ORM;
use PhpGuild\DoctrineExtraBundle\Model\Identity\IdentityInterface;
use PhpGuild\DoctrineExtraBundle\Model\Identity\IdentityTrait;
/**
* Class User
*
* @ORM\Entity
*/
class User implements IdentityInterface
{
use IdentityTrait;
}
Filters
SofDeletable
doctrine:
orm:
filters:
soft_deletable:
class: PhpGuild\DoctrineExtraBundle\Doctrine\Filter\SoftDeletableFilter
enabled: true
Doctrine Behaviors
View documentation https://github.com/KnpLabs/DoctrineBehaviors
All versions of doctrine-extra-bundle with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.2
beberlei/doctrineextensions Version ^1.3
knplabs/doctrine-behaviors Version ^2.0
symfony/orm-pack Version ^2.1
symfony/uid Version 5.3.*|6.*
beberlei/doctrineextensions Version ^1.3
knplabs/doctrine-behaviors Version ^2.0
symfony/orm-pack Version ^2.1
symfony/uid Version 5.3.*|6.*
The package phpguild/doctrine-extra-bundle contains the following files
Loading the files please wait ....