Download the PHP package noahlvb/valueobject-bundle without Composer
On this page you can find all versions of the php package noahlvb/valueobject-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download noahlvb/valueobject-bundle
More information about noahlvb/valueobject-bundle
Files in noahlvb/valueobject-bundle
Package valueobject-bundle
Short Description Symfony integration for my value object package
License MIT
Informations about the package valueobject-bundle
php-valueobject-bundle
Symfony intergation for my value object package
Installation
With composer, add:
Run Tests
To make sure everything works you can run tests:
Doctrine DBAL
In order to store you own value object just make a new doctrine type extended by ValueObjectType
. Also add this newly created type to your doctrine config.
Symfony Forms
If you want to use your value object in a Symfony Form you should make a new form type extending ValueObjectForm
. And then use that formType in your own form.
By default ValueObjectForm
will be a TextType
. If you wish to override this and make it a EmailType
for example, override the getParent()
method with your choose.
Symfony Validator
By default the ValeuObjectForm
will use the ValueObjectConstraint(Validator)
when validating the form. This will use the build in isValid()
method of the value objects.
If you wish to write your own validation message or extend the validator you can do so in like this.
You have the create a empty class and extend the ValueObjectConstraintValidator
. This is because Symfony Validator matches the constraint and its validator based on the class names.
Lastly in your form type override the getConstraintClassName()
with the class name of your newly created constraint. Like this:
All versions of valueobject-bundle with dependencies
noahlvb/valueobject Version ^1.0
doctrine/dbal Version ^2.10
symfony/form Version ^6.0
symfony/validator Version ^6.0