diff --git a/src/Playbloom/Satisfy/Form/Type/ConfigurationType.php b/src/Playbloom/Satisfy/Form/Type/ConfigurationType.php index 70cac1b..0625c16 100644 --- a/src/Playbloom/Satisfy/Form/Type/ConfigurationType.php +++ b/src/Playbloom/Satisfy/Form/Type/ConfigurationType.php @@ -25,7 +25,6 @@ public function buildForm(FormBuilderInterface $builder, array $options) 'required' => true, 'constraints' => [ new Assert\NotBlank(), - new Assert\Regex('#[a-z0-9]([_.-]?[a-z0-9]+)*/[a-z0-9]([_.-]?[a-z0-9]+)*#'), ], ]) ->add('description', TextareaType::class, [ @@ -54,15 +53,15 @@ public function buildForm(FormBuilderInterface $builder, array $options) ->add('requireAll', Type\CheckboxType::class, [ 'required' => false, 'attr' => [ - 'rel' => 'tooltip', - 'data-title' => 'selects all versions of all packages in the repositories you defined', + 'rel' => 'tooltip', + 'data-title' => 'selects all versions of all packages in the repositories you defined', ], ]) ->add('requireDependencies', Type\CheckboxType::class, [ 'required' => false, 'attr' => [ - 'rel' => 'tooltip', - 'data-title' => << 'tooltip', + 'data-title' => << 'tooltip', 'data-title' => 'when not checked, the JSON_PRETTY_PRINT option will not be used on encoding.', ], - ]) - ; + ]); } }