René Sinnbeck
René Sinnbeck
Yeah I have it running in a PHP 8.2 project as well and it works just fine. The issue is that when working on a PR I am forced to...
Thanks for the suggestion. I just made a simple Dockerfile instead :) ```Dockerfile FROM php:7.4-cli RUN curl -sSL https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions -o - | sh -s \ bcmath zip COPY --from=composer:latest /usr/bin/composer...
Wow thanks for the awesome answers! It can see it uses around 250 MB of ram (I use generators to keep memory as low as possible), but luckily the system...
Oh I had hoped there would be an "import cases from csv" thing in the menu or something. But they can still download it and put the files next to...
Hm weird. I am certain I checked it multiple times and was able to recreate it. I will close this for now and reopen if I find out how I...
I have the same. Had to disabled the scanner for now. ``` appserver_nginx: scanner: false
The regex ensures that the name never ends on an underscore as that is recommended. But this does mean that the random string generator is not allowed to add _...
Hm yeah that might be the case. My own experience is working with survey data where the naming is very important as it comes from a survey system where the...
It now just adds `_$n` like requested. I also wrote some extra tests to ensure the regex works as expected.
Ah cool that you work in somewhat the same business as me. Our surveys are B2B :) That is a good point. Perhaps for reserved names it would be better...