Marco Pfeiffer
Marco Pfeiffer
I just noticed how unspecific I described my issue, sorry for that. So the issue is that, when i have a translation key like: `t('ns:hello_world', {count: 1})`, it'll extract the...
I can confirm this issue with mysql 5.6.47 and aws aurora. The index gets truncated and if you run the database with `--sql-mode=STRICT_TRANS_TABLES` then this results in an error that...
Good hint, although by quickly looking over it, it seems like a slightly different syntax for vanilla alarms. I think I have to experiment more with it to see what...
> We also tried that in the past. That could be a possibility, but using base64 on something that does not need it increases the size of the response by...
I can think of a way that does not introduce an overhead to the current way. ``` php > var_dump(json_encode(base64_decode('R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'))); bool(false) php > var_dump(json_last_error_msg()); string(56) "Malformed UTF-8 characters, possibly incorrectly...
@georgeboot did you verify with the http api or the rest api? Because the binaryMediaTypes option only exists for the rest api. The http api only uses the `isBase64Encoded` in...
Sure, but that would disable all recipes, even the ones I might want to execute. Also: this isn't really about my projects. Every modern symfony project (which didn't change the...
@Nyholm Nobody is talking about removing a dependency because of that. The point of flex (to my understading) is: I install a new bundl/component/library and I get a template that...
The php.ini does support reading environment variables so this works: ```ini memory_limit=${AWS_LAMBDA_FUNCTION_MEMORY_SIZE}M ``` Although this would need to be tested in the docker images.
Not a public site but I build a demo symfony mulipage application as reference: https://github.com/Nemo64/serverless-symfony Documentation on how to test and deploy it is in the readme. The main highlight...