dvlpm / serializable-type-bundle
Serializable Type Bundle
0.2.0
2024-02-24 12:06 UTC
Requires
- php: >=8.0
- doctrine/doctrine-bundle: ^2.1.0
- symfony/framework-bundle: ^5.3 || ^6.0 || ^7.0
- symfony/serializer: ^5.3 || ^6.0 || ^7.0
This package is auto-updated.
Last update: 2025-03-24 14:38:02 UTC
README
Installation
Usage is as simple as
composer require dvlpm/serializable-type-bundle:^1.0
// Kernel
public function registerBundles()
{
// ...
$bundles[] = new \Dvlpm\SerializableTypeBundle\DvlpmSerializableTypeBundle();
// ...
}
# config.yml
dvlpm_serializable_type:
dbal_types:
my_domain_type: My\Domain\Type
class MyEntity
{
/** @ORM\Column(type="my_domain_type") */
private $value;
}
This will enable conversion of value field from your type