A custom Symfony Validator that validates CPF.
- PHP >= 7.4
composer require cancio-labs/cpf-symfony-validator
Add the CpfConstraint in your entity...
use CancioLabs\Validator\Cpf\CpfConstraint;
#[CpfConstraint]
private ?Cpf $cpf = null;
or add it to a constraint list:
use CancioLabs\Validator\Cpf\CpfConstraint;
$formBuilder->add('cpf', TextType::class, [
'constraints' => [
new CpfConstraint(),
],
]);