From eba11946861da017fe78b9458ffb03bca1178cdf Mon Sep 17 00:00:00 2001 From: thisfro Date: Fri, 30 Apr 2021 19:30:31 +0200 Subject: [PATCH] raise max upload size --- src/Form/OfferingFormType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/OfferingFormType.php b/src/Form/OfferingFormType.php index c734894..79728fd 100644 --- a/src/Form/OfferingFormType.php +++ b/src/Form/OfferingFormType.php @@ -22,7 +22,7 @@ class OfferingFormType extends AbstractType 'required' => false, 'mapped' => false, 'constraints' => [ - new Image(['maxSize' => '1024k']) + new Image(['maxSize' => '5096k']) ], ]) ->add('submit', SubmitType::class)