Anton Dachauer
Anton Dachauer
I try to add the `imagick` php extension to my Docker container: ```Dockerfile FROM php:8.3-fpm-alpine AS base RUN apk add --update --no-cache --virtual .build-deps $PHPIZE_DEPS imagemagick imagemagick-dev \ && pecl...
### Symfony version(s) affected 7.1.5 ### Description `InvalidArgumentException: Input "program[startLocation]" cannot take "1" as a value (possible values: "")` when trying to test a form with ux-autocomplete field. ### How...
Hello, I'm using the bundle in a API platform project for auth. In my API tests, I use the configured login endpoint `/api/tests`. Bundle configuration: ```yaml lexik_jwt_authentication: secret_key: '%env(resolve:JWT_SECRET_KEY)%' public_key:...
I have a form with a AutoComplete field for a ManyToMany relation: ```php $builder ->add('categories', CategoryAutocompleteField::class, [ 'label' => 'Kategorie(n)', 'required' => true, 'class' => Category::class, 'autocomplete' => true, 'multiple'...